diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-24 19:29:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-24 19:29:56 +0000 |
commit | 5ad9b31ac5555d46832e1896feba92d1c41409d0 (patch) | |
tree | de0bae33162b7877d00d40ff81c1d0136b6a767d /screen.c | |
parent | b9034946adeb2ed03a1266431a27e2a24498c350 (diff) | |
download | rtmux-5ad9b31ac5555d46832e1896feba92d1c41409d0.tar.gz rtmux-5ad9b31ac5555d46832e1896feba92d1c41409d0.tar.bz2 rtmux-5ad9b31ac5555d46832e1896feba92d1c41409d0.zip |
Scroll region reset homes the cursor, so start at 0,0 when drawing. Also don't set region after DECRC.
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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; |