From 77386db04bfdfc6b1b5d81a5c0ebaf7280d0d019 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 28 Nov 2007 08:20:41 +0000 Subject: [PATCH] Turn mouse on/off as appropriate. --- screen.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/screen.c b/screen.c index f83a9142..51da4e65 100644 --- a/screen.c +++ b/screen.c @@ -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 @@ -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. */