From 0a15bbf3f1972dc84c5c84d5128024c1bc4c0074 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 30 Nov 2019 09:15:35 +0000 Subject: [PATCH] Do not defer redraw if it is just the status line (will need to do more here I think). --- server-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-client.c b/server-client.c index 2cfd8838..075b0ba1 100644 --- a/server-client.c +++ b/server-client.c @@ -1612,7 +1612,7 @@ server_client_check_redraw(struct client *c) * end up back here. */ needed = 0; - if (c->flags & CLIENT_ALLREDRAWFLAGS) + if (c->flags & (CLIENT_ALLREDRAWFLAGS & ~CLIENT_REDRAWSTATUS)) needed = 1; else { TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {