summaryrefslogtreecommitdiffstats
path: root/tty.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-11-22 21:13:13 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-11-22 21:13:13 +0000
commitef9b2eb566fc090b773c79e406dd43d0006a3217 (patch)
tree578b4e7793b3111940d06e78510a2eeb2bd7aa04 /tty.c
parent9a1b4f9ed3285d3b9b0e8d22b0bdb1a97df7e949 (diff)
There is somewhere that WINDOW_HIDDEN is getting set when it shouldn't
be and I can't find it, but the flag itself is a useless optimisation that only applies to automatic-resize windows, so just dispose of it entirely. Fixes problems reported by Nicholas Riley.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 379fa42d..63f6127f 100644
--- a/tty.c
+++ b/tty.c
@@ -547,7 +547,7 @@ tty_write(void (*cmdfn)(
if (wp->window->flags & WINDOW_REDRAW || wp->flags & PANE_REDRAW)
return;
- if (wp->window->flags & WINDOW_HIDDEN || !window_pane_visible(wp))
+ if (!window_pane_visible(wp))
return;
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {