From 42e5b4b032ab72b8dcd13e6cd40a93a394c96cd2 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Date: Mon, 21 Dec 2015 15:40:01 +0100 Subject: [PATCH] Don't skip all clients on ipc_workspace_event. Only clients not subcriped to the workspace event should be skipped. --- sway/ipc-server.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 9dd3e1a5e..bb5e0d25c 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -564,7 +564,9 @@ void ipc_event_workspace(swayc_t *old, swayc_t *new) { for (int i = 0; i < ipc_client_list->length; i++) { struct ipc_client *client = ipc_client_list->items[i]; - if ((client->subscribed_events & IPC_GET_WORKSPACES) == 0) break; + if ((client->subscribed_events & IPC_GET_WORKSPACES) == 0) { + continue; + } ipc_send_reply(client, json_string, (uint32_t) strlen(json_string)); }