Don't skip all clients on ipc_workspace_event.

Only clients not subcriped to the workspace event should be skipped.
This commit is contained in:
Mikkel Oscar Lyderik 2015-12-21 15:40:01 +01:00
parent 7b015bf535
commit 42e5b4b032

View file

@ -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));
}