diff options
author | 2019-03-12 13:56:30 +0000 | |
---|---|---|
committer | 2019-03-12 13:56:30 +0000 | |
commit | db993454abd2c5952a13e7cdd9a242b40879596a (patch) | |
tree | 148a8eae622f28cc05332b6f948b0f60fc644728 /usr.bin/tmux/tmux.h | |
parent | Fix wrapping after origin mode change. (diff) | |
download | wireguard-openbsd-db993454abd2c5952a13e7cdd9a242b40879596a.tar.xz wireguard-openbsd-db993454abd2c5952a13e7cdd9a242b40879596a.zip |
Fix resizing of control clients, should be ignored until SIZECHANGED flag set.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index bf37ab2ae58..0428bceeec5 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.858 2019/03/12 11:16:50 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.859 2019/03/12 13:56:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1393,8 +1393,7 @@ struct client { CLIENT_REDRAWSTATUSALWAYS| \ CLIENT_REDRAWBORDERS) #define CLIENT_NOSIZEFLAGS \ - (CLIENT_EXIT| \ - CLIENT_DEAD| \ + (CLIENT_DEAD| \ CLIENT_SUSPENDED| \ CLIENT_DETACHING) int flags; |