From 206d878127b4ba4aedb5255b03d71272fa06bcab Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 30 Dec 2019 21:24:55 +0000 Subject: [PATCH] Do not let readonly clients limit the size, suggested by Max Barraclough in GitHub issue 2042. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tmux.h b/tmux.h index 2315f643..0a0fc1b5 100644 --- a/tmux.h +++ b/tmux.h @@ -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;