diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-12 13:56:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-12 13:56:31 +0000 |
commit | 7e154e001a15f4f338826146929ecf5f948e8028 (patch) | |
tree | 2dc331eed5add2e3af627c5f6d1740fd959814c0 /usr.bin/tmux/tmux.h | |
parent | 98de206c124baf97f9a7b4dc92ba3cd6eaa36532 (diff) |
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; |