diff options
author | nicm <nicm> | 2019-05-08 18:07:12 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-08 18:07:12 +0000 |
commit | f9682d2e558c58117f23f302ce35d9b319151189 (patch) | |
tree | 3478fd0101775ebf9ae8b054dd59cc5684e782fe /tmux.h | |
parent | a384245c5aa1b1be2a73d9b3318a4c0d5bfc5391 (diff) | |
download | rtmux-f9682d2e558c58117f23f302ce35d9b319151189.tar.gz rtmux-f9682d2e558c58117f23f302ce35d9b319151189.tar.bz2 rtmux-f9682d2e558c58117f23f302ce35d9b319151189.zip |
Add a flag to redraw only the overlay, and remove the overlay on resize.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1458,11 +1458,13 @@ struct client { #define CLIENT_SIZECHANGED 0x400000 #define CLIENT_STATUSOFF 0x800000 #define CLIENT_REDRAWSTATUSALWAYS 0x1000000 +#define CLIENT_REDRAWOVERLAY 0x2000000 #define CLIENT_ALLREDRAWFLAGS \ (CLIENT_REDRAWWINDOW| \ CLIENT_REDRAWSTATUS| \ CLIENT_REDRAWSTATUSALWAYS| \ - CLIENT_REDRAWBORDERS) + CLIENT_REDRAWBORDERS| \ + CLIENT_REDRAWOVERLAY) #define CLIENT_NOSIZEFLAGS \ (CLIENT_DEAD| \ CLIENT_SUSPENDED| \ |