sway

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

commit 39e33193940d008310341beb44697c4c61ef5752
parent 4240ede065c05df05504c820f397259c7fddc9a8
Author: db <github@benedik.si>
Date:   Tue, 10 Apr 2018 22:01:22 +0200

fix swaybar ipc handling

Swap return with break in IPC_EVENT_WORKSPACE case to free resp.

Change default return value to true. This causes IPC_EVENT_MODE changes to be
rendered instantly.

Diffstat:
Mswaybar/ipc.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/swaybar/ipc.c b/swaybar/ipc.c @@ -331,7 +331,7 @@ bool handle_ipc_readable(struct swaybar *bar) { switch (resp->type) { case IPC_EVENT_WORKSPACE: ipc_get_workspaces(bar); - return true; + break; case IPC_EVENT_MODE: { json_object *result = json_tokener_parse(resp->payload); if (!result) { @@ -367,5 +367,5 @@ bool handle_ipc_readable(struct swaybar *bar) { return false; } free_ipc_response(resp); - return false; + return true; }