From 5ad9b31ac5555d46832e1896feba92d1c41409d0 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 24 Nov 2007 19:29:56 +0000 Subject: [PATCH] Scroll region reset homes the cursor, so start at 0,0 when drawing. Also don't set region after DECRC. --- input.c | 4 +--- screen.c | 7 ++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/input.c b/input.c index 53f1be7b..d363703f 100644 --- a/input.c +++ b/input.c @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.36 2007-11-23 22:51:13 nicm Exp $ */ +/* $Id: input.c,v 1.37 2007-11-24 19:29:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -484,8 +484,6 @@ input_handle_private_two(u_char ch, struct input_ctx *ictx) if (!screen_hidden(s)) { input_store_two( ictx->b, CODE_ATTRIBUTES, s->attr, s->colr); - input_store_two(ictx->b, CODE_SCROLLREGION, - s->rupper + 1, s->rlower + 1); input_store_two( ictx->b, CODE_CURSORMOVE, s->cy + 1, s->cx + 1); } diff --git a/screen.c b/screen.c index 2bb72fdd..1cd2072f 100644 --- a/screen.c +++ b/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.43 2007-11-24 17:58:45 nicm Exp $ */ +/* $Id: screen.c,v 1.44 2007-11-24 19:29:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -278,8 +278,9 @@ screen_draw_start(struct screen_draw_ctx *ctx, ctx->ox = ox; ctx->oy = oy; - ctx->cx = s->cx; - ctx->cy = s->cy; + /* Resetting the scroll region homes the cursor so start at 0,0. */ + ctx->cx = 0; + ctx->cy = 0; ctx->sel.flag = 0;