From 5a288b1efe9b5b6cb521a2b0861e6deb2252cb3c Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 30 Apr 2019 06:21:30 +0000 Subject: [PATCH] Don't redraw control clients, from George Nachman. --- cmd-select-pane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd-select-pane.c b/cmd-select-pane.c index 89c6fb20..92ecb734 100644 --- a/cmd-select-pane.c +++ b/cmd-select-pane.c @@ -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);