Skip to content

Commit

Permalink
Do not defer redraw if it is just the status line (will need to do mo…
Browse files Browse the repository at this point in the history
…re here I

think).
  • Loading branch information
nicm committed Nov 30, 2019
1 parent a5b1e20 commit 0a15bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0a15bbf

Please sign in to comment.