diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-08 21:02:25 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-08 21:02:25 +0100 |
commit | 4bc45fc95aa1a7af5bf97b4c1f66ccbc70790c31 (patch) | |
tree | e7b208da1146e64e5f91d978375478d0f3fb792b /tmux.h | |
parent | b24d7d9c95c2083f14715f95a5a96fcb5204eca0 (diff) | |
parent | f9682d2e558c58117f23f302ce35d9b319151189 (diff) | |
download | rtmux-4bc45fc95aa1a7af5bf97b4c1f66ccbc70790c31.tar.gz rtmux-4bc45fc95aa1a7af5bf97b4c1f66ccbc70790c31.tar.bz2 rtmux-4bc45fc95aa1a7af5bf97b4c1f66ccbc70790c31.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1460,11 +1460,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| \ |