Skip to content

Commit

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

This reverts commit 0a15bbf.
  • Loading branch information
topcat001 committed Aug 20, 2023
1 parent e6322b4 commit 6f013fc
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 @@ -2582,7 +2582,7 @@ server_client_check_redraw(struct client *c)
* end up back here.
*/
needed = 0;
if (c->flags & (CLIENT_ALLREDRAWFLAGS & ~CLIENT_REDRAWSTATUS))
if (c->flags & CLIENT_ALLREDRAWFLAGS)
needed = 1;
else {
TAILQ_FOREACH(wp, &w->panes, entry) {
Expand Down

0 comments on commit 6f013fc

Please sign in to comment.