diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 13:11:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 13:11:41 +0000 |
commit | 9a6e47cfa8b7ebac8bebc7c2027fd72bee9d38ab (patch) | |
tree | 31a82c492c937f7aae181b906a47d97378c3e813 /status.c | |
parent | 9b9ceac657c76ed9fe76f76f3276c1d05593942c (diff) | |
download | rtmux-9a6e47cfa8b7ebac8bebc7c2027fd72bee9d38ab.tar.gz rtmux-9a6e47cfa8b7ebac8bebc7c2027fd72bee9d38ab.tar.bz2 rtmux-9a6e47cfa8b7ebac8bebc7c2027fd72bee9d38ab.zip |
Initial history support.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.9 2007-11-20 18:11:37 nicm Exp $ */ +/* $Id: status.c,v 1.10 2007-11-21 13:11:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -57,7 +57,7 @@ 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_CURSOR) + if (!(s->mode & MODE_HIDDEN) && s->mode & MODE_CURSOR) input_store_zero(b, CODE_CURSORON); } |