diff options
author | nicm <nicm> | 2020-04-18 21:35:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-18 21:35:32 +0000 |
commit | 62ff5e4b010a9db695c79593d20ac92b0aed9558 (patch) | |
tree | d62716ed01f539d0a353a1254174f5c84b8f3906 /tmux.h | |
parent | 100db552d16164648e269aeb45fd87f7a39d9c11 (diff) | |
download | rtmux-62ff5e4b010a9db695c79593d20ac92b0aed9558.tar.gz rtmux-62ff5e4b010a9db695c79593d20ac92b0aed9558.tar.bz2 rtmux-62ff5e4b010a9db695c79593d20ac92b0aed9558.zip |
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |