summaryrefslogtreecommitdiffstats
path: root/status.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-22 18:09:43 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-22 18:09:43 +0000
commit18d72e69289fa3dbdb0766ea7f9c0ff8908626b9 (patch)
treedb3fca1dba3a1041c902764f32b2fcdf2cd915c2 /status.c
parent4930e894c278a9267861ccf3db231d97d2208741 (diff)
Partial copy mode. Currently does the same as scroll mode but using a cursor. Also fix bug where resizing would leave crap lying around.
Diffstat (limited to 'status.c')
-rw-r--r--status.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/status.c b/status.c
index 5a341d0e..15821313 100644
--- a/status.c
+++ b/status.c
@@ -1,4 +1,4 @@
-/* $Id: status.c,v 1.12 2007-11-22 09:29:50 nicm Exp $ */
+/* $Id: status.c,v 1.13 2007-11-22 18:09:43 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -57,8 +57,13 @@ status_write(struct client *c)
input_store_two(b, CODE_ATTRIBUTES, s->attr, s->colr);
input_store_two(b, CODE_CURSORMOVE, s->cy + 1, s->cx + 1);
- if (!(s->mode & MODE_NOCURSOR) && s->mode & MODE_CURSOR)
- input_store_zero(b, CODE_CURSORON);
+ if (s->mode & MODE_BACKGROUND) {
+ if (s->mode & MODE_BGCURSOR)
+ input_store_zero(c->out, CODE_CURSORON);
+ } else {
+ if (s->mode & MODE_CURSOR)
+ input_store_zero(c->out, CODE_CURSORON);
+ }
}
void printflike3