mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Only redraw screen when not hidden. Heh.
This commit is contained in:
parent
3932da2522
commit
474853439c
@ -1,4 +1,4 @@
|
||||
/* $Id: screen-redraw.c,v 1.32 2009-04-01 18:33:19 nicm Exp $ */
|
||||
/* $Id: screen-redraw.c,v 1.33 2009-04-01 21:09:01 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -87,6 +87,9 @@ screen_redraw_screen(struct client *c)
|
||||
|
||||
/* Draw the panes. */
|
||||
TAILQ_FOREACH(wp, &w->panes, entry) {
|
||||
if (wp->flags & PANE_HIDDEN)
|
||||
continue;
|
||||
|
||||
tty_reset(tty);
|
||||
|
||||
s = wp->screen;
|
||||
|
Loading…
Reference in New Issue
Block a user