aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/i3bar.c
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-09-17 13:31:00 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-09-18 11:36:33 +0100
commit87c93d6ad986faa384f1279e21c10e35c798686a (patch)
tree105877db9f5b3049e829899d39019fd673ada26e /swaybar/i3bar.c
parentswaybar: fix empty function prototypes (diff)
downloadsway-87c93d6ad986faa384f1279e21c10e35c798686a.tar.gz
sway-87c93d6ad986faa384f1279e21c10e35c798686a.tar.zst
sway-87c93d6ad986faa384f1279e21c10e35c798686a.zip
swaybar: send trailing comma with click event json
Diffstat (limited to 'swaybar/i3bar.c')
-rw-r--r--swaybar/i3bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c
index 0becae5d..f4ca5504 100644
--- a/swaybar/i3bar.c
+++ b/swaybar/i3bar.c
@@ -214,7 +214,7 @@ enum hotspot_event_handling i3bar_block_send_click(struct status_line *status,
214 json_object_object_add(event_json, "button", json_object_new_int(button)); 214 json_object_object_add(event_json, "button", json_object_new_int(button));
215 json_object_object_add(event_json, "x", json_object_new_int(x)); 215 json_object_object_add(event_json, "x", json_object_new_int(x));
216 json_object_object_add(event_json, "y", json_object_new_int(y)); 216 json_object_object_add(event_json, "y", json_object_new_int(y));
217 if (dprintf(status->write_fd, "%s\n", 217 if (dprintf(status->write_fd, "%s,\n",
218 json_object_to_json_string(event_json)) < 0) { 218 json_object_to_json_string(event_json)) < 0) {
219 status_error(status, "[failed to write click event]"); 219 status_error(status, "[failed to write click event]");
220 } 220 }