Do not defer redraw if it is just the status line (will need to do more here I

think).
pull/3363/head
Nicholas Marriott 2019-11-30 09:15:35 +00:00
parent a5b1e20941
commit 0a15bbf3f1
1 changed files with 1 additions and 1 deletions

View File

@ -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) {