diff options
author | nicm <nicm> | 2020-04-18 07:32:53 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-18 07:32:53 +0000 |
commit | b0a37e7514f2e08a9a8315cc68add4f0a53ed2af (patch) | |
tree | 8ddae5f75aa303edfb7a9039ff101ba846dcc0be /tmux.h | |
parent | e153b928ff5139fdc39b45db493a1c81d2175d21 (diff) | |
download | rtmux-b0a37e7514f2e08a9a8315cc68add4f0a53ed2af.tar.gz rtmux-b0a37e7514f2e08a9a8315cc68add4f0a53ed2af.tar.bz2 rtmux-b0a37e7514f2e08a9a8315cc68add4f0a53ed2af.zip |
Bring back previons fix to only redraw panes that need it after a redraw
is deferred, but clear the pane flags when they are actually redrawn
rather than every time.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1542,12 +1542,14 @@ struct client { #define CLIENT_CONTROL_NOOUTPUT 0x4000000 #define CLIENT_DEFAULTSOCKET 0x8000000 #define CLIENT_STARTSERVER 0x10000000 +#define CLIENT_REDRAWPANES 0x20000000 #define CLIENT_ALLREDRAWFLAGS \ (CLIENT_REDRAWWINDOW| \ CLIENT_REDRAWSTATUS| \ CLIENT_REDRAWSTATUSALWAYS| \ CLIENT_REDRAWBORDERS| \ - CLIENT_REDRAWOVERLAY) + CLIENT_REDRAWOVERLAY| \ + CLIENT_REDRAWPANES) #define CLIENT_UNATTACHEDFLAGS \ (CLIENT_DEAD| \ CLIENT_SUSPENDED| \ |