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

in GitHub issue 2042.
pull/2046/head
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 \
(CLIENT_DEAD| \
CLIENT_SUSPENDED| \
CLIENT_DETACHING)
CLIENT_DETACHING| \
CLIENT_READONLY)
int flags;
struct key_table *keytable;