mirror of
https://github.com/tmux/tmux.git
synced 2024-12-24 10:08:48 +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.
|
* end up back here.
|
||||||
*/
|
*/
|
||||||
needed = 0;
|
needed = 0;
|
||||||
if (c->flags & CLIENT_ALLREDRAWFLAGS)
|
if (c->flags & (CLIENT_ALLREDRAWFLAGS & ~CLIENT_REDRAWSTATUS))
|
||||||
needed = 1;
|
needed = 1;
|
||||||
else {
|
else {
|
||||||
TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
|
TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
|
||||||
|
Loading…
Reference in New Issue
Block a user