From 2dc9bfd93afd26b76dfdbf4a22338a5ef85893bf Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 10 May 2017 16:48:36 +0000 Subject: Prevent control clients from affecting the session size until they have specified a size with refresh-client -C. Prompted by a different change with the same purpose from George Nachman. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 9d0cd960..5fd57ee4 100644 --- a/tmux.h +++ b/tmux.h @@ -1345,6 +1345,7 @@ struct client { #define CLIENT_STATUSFORCE 0x80000 #define CLIENT_DOUBLECLICK 0x100000 #define CLIENT_TRIPLECLICK 0x200000 +#define CLIENT_SIZECHANGED 0x400000 int flags; struct key_table *keytable; -- cgit