The PANE_REDRAW flag bit might be needed by other panes so we can't

clear it on the first redraw, and it can't be set when we are finished
or they would be redrawn again, so if the redraw is deferred for a
client, copy the redraw flag into a separate set of bits just for that
client.
This commit is contained in:
nicm
2020-04-18 21:35:32 +00:00
parent 100db552d1
commit 62ff5e4b01
3 changed files with 37 additions and 12 deletions

2
tmux.h
View File

@ -1562,6 +1562,8 @@ struct client {
int flags;
struct key_table *keytable;
uint64_t redraw_panes;
char *message_string;
struct event message_timer;
u_int message_next;