mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 11:18:48 +00:00
Don't redraw control clients, from George Nachman.
This commit is contained in:
parent
e286178aa7
commit
750d5830c2
@ -66,7 +66,7 @@ cmd_select_pane_redraw(struct window *w)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
TAILQ_FOREACH(c, &clients, entry) {
|
TAILQ_FOREACH(c, &clients, entry) {
|
||||||
if (c->session == NULL)
|
if (c->session == NULL || (c->flags & CLIENT_CONTROL))
|
||||||
continue;
|
continue;
|
||||||
if (c->session->curw->window == w && tty_window_bigger(&c->tty))
|
if (c->session->curw->window == w && tty_window_bigger(&c->tty))
|
||||||
server_redraw_client(c);
|
server_redraw_client(c);
|
||||||
|
Loading…
Reference in New Issue
Block a user