mirror of
https://github.com/tmux/tmux.git
synced 2024-11-18 18:38:54 +00:00
Redraw checks have to after handling input or pane redraw flags set by key
presses will not be acted on.
This commit is contained in:
parent
9c40a4edc5
commit
1f22a199fb
@ -197,10 +197,10 @@ server_client_loop(void)
|
|||||||
if (c == NULL || c->session == NULL)
|
if (c == NULL || c->session == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
server_client_handle_data(c);
|
||||||
|
|
||||||
server_client_check_timers(c);
|
server_client_check_timers(c);
|
||||||
server_client_check_redraw(c);
|
server_client_check_redraw(c);
|
||||||
|
|
||||||
server_client_handle_data(c);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user