diff options
-rw-r--r-- | screen.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.52 2007-11-27 21:07:38 nicm Exp $ */ +/* $Id: screen.c,v 1.53 2007-11-28 08:20:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -321,6 +321,7 @@ screen_draw_start(struct screen_draw_ctx *ctx, struct screen *s, ctx->write(ctx->data, TTY_SCROLLREGION, 0, screen_last_y(s)); ctx->write(ctx->data, TTY_CURSOROFF); + ctx->write(ctx->data, TTY_MOUSEOFF); } /* Set offset. */ @@ -412,6 +413,8 @@ screen_draw_stop(struct screen_draw_ctx *ctx) if (s->mode & MODE_CURSOR) ctx->write(ctx->data, TTY_CURSORON); } + if (s->mode & MODE_MOUSE) + ctx->write(ctx->data, TTY_MOUSEON); } /* Insert lines. */ |