Do not let readonly clients limit the size, suggested by Max Barraclough

in GitHub issue 2042.
This commit is contained in:
nicm 2019-12-30 21:24:55 +00:00
parent 4ea07716de
commit 206d878127
1 changed files with 2 additions and 1 deletions

3
tmux.h
View File

@ -1599,7 +1599,8 @@ struct client {
#define CLIENT_NOSIZEFLAGS \ #define CLIENT_NOSIZEFLAGS \
(CLIENT_DEAD| \ (CLIENT_DEAD| \
CLIENT_SUSPENDED| \ CLIENT_SUSPENDED| \
CLIENT_DETACHING) CLIENT_DETACHING| \
CLIENT_READONLY)
int flags; int flags;
struct key_table *keytable; struct key_table *keytable;