sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 442a54c38bb60d92bd4383f0d80ca55b876399e8
parent fb91d55b924b63361a5e2807dbc012b4ad7bc880
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 21 Dec 2015 09:49:55 -0500

Merge pull request #390 from mikkeloscar/workspace-ipc-event

Don't skip all clients on ipc_workspace_event.
Diffstat:
Msway/ipc-server.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sway/ipc-server.c b/sway/ipc-server.c @@ -575,7 +575,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)); }