diff options
author | nicm <nicm> | 2019-12-30 21:24:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-12-30 21:24:55 +0000 |
commit | 206d878127b4ba4aedb5255b03d71272fa06bcab (patch) | |
tree | 31c705485f4f9d872488854ab408c56ca62c1d8a | |
parent | 4ea07716de541aea5b8118ac0cfc4bc3bd30cb80 (diff) | |
download | rtmux-206d878127b4ba4aedb5255b03d71272fa06bcab.tar.gz rtmux-206d878127b4ba4aedb5255b03d71272fa06bcab.tar.bz2 rtmux-206d878127b4ba4aedb5255b03d71272fa06bcab.zip |
Do not let readonly clients limit the size, suggested by Max Barraclough
in GitHub issue 2042.
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1599,7 +1599,8 @@ struct client { #define CLIENT_NOSIZEFLAGS \ (CLIENT_DEAD| \ CLIENT_SUSPENDED| \ - CLIENT_DETACHING) + CLIENT_DETACHING| \ + CLIENT_READONLY) int flags; struct key_table *keytable; |