From 62ff5e4b010a9db695c79593d20ac92b0aed9558 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 Apr 2020 21:35:32 +0000 Subject: 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. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 1580e4c1..bbac756b 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit