Remove a couple of redraw flags that no longer have any effect.

This commit is contained in:
nicm
2017-04-17 06:40:32 +00:00
parent d566c780e5
commit 7461c165b5
4 changed files with 3 additions and 12 deletions

4
tty.c
View File

@ -816,9 +816,7 @@ tty_write(void (*cmdfn)(struct tty *, const struct tty_ctx *),
if (wp == NULL)
return;
if (wp->window->flags & WINDOW_REDRAW || wp->flags & PANE_REDRAW)
return;
if (!window_pane_visible(wp) || wp->flags & PANE_DROP)
if ((wp->flags & (PANE_REDRAW|PANE_DROP)) || !window_pane_visible(wp))
return;
TAILQ_FOREACH(c, &clients, entry) {