mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 09:58:52 +00:00
Do not defer redraw if it is just the status line (will need to do more here I
think).
This commit is contained in:
parent
0c999a402e
commit
5d8dbcdf3d
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user