From a54a88edd6fd893d4370feb9f9136e13096b891c Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 1 Jun 2020 09:43:00 +0000 Subject: Instead of sending all data to control mode clients as fast as possible, add a limit of how much data will be sent to the client and try to use it for panes with some degree of fairness. GitHub issue 2217, with George Nachman. --- window-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'window-client.c') diff --git a/window-client.c b/window-client.c index 159efa5a..5e02462b 100644 --- a/window-client.c +++ b/window-client.c @@ -166,7 +166,7 @@ window_client_build(void *modedata, struct mode_tree_sort_criteria *sort_crit, data->item_size = 0; TAILQ_FOREACH(c, &clients, entry) { - if (c->session == NULL || (c->flags & (CLIENT_DETACHING))) + if (c->session == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS)) continue; item = window_client_add_item(data); -- cgit