Don't redraw control clients, from George Nachman.

pull/1731/head
nicm 2019-04-30 06:21:30 +00:00
parent 82c789ee58
commit 5a288b1efe
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ cmd_select_pane_redraw(struct window *w)
*/
TAILQ_FOREACH(c, &clients, entry) {
if (c->session == NULL)
if (c->session == NULL || (c->flags & CLIENT_CONTROL))
continue;
if (c->session->curw->window == w && tty_window_bigger(&c->tty))
server_redraw_client(c);