diff options
| author | Ian Fan <ianfan0@gmail.com> | 2018-09-17 13:31:00 +0100 | 
|---|---|---|
| committer | Ian Fan <ianfan0@gmail.com> | 2018-09-18 11:36:33 +0100 | 
| commit | 87c93d6ad986faa384f1279e21c10e35c798686a (patch) | |
| tree | 105877db9f5b3049e829899d39019fd673ada26e /swaybar | |
| parent | 9932c6a1f1f295531989d9e76494b0ca43509cd4 (diff) | |
| download | sway-87c93d6ad986faa384f1279e21c10e35c798686a.tar.xz | |
swaybar: send trailing comma with click event json
Diffstat (limited to 'swaybar')
| -rw-r--r-- | swaybar/i3bar.c | 2 | 
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,  	json_object_object_add(event_json, "button", json_object_new_int(button));  	json_object_object_add(event_json, "x", json_object_new_int(x));  	json_object_object_add(event_json, "y", json_object_new_int(y)); -	if (dprintf(status->write_fd, "%s\n", +	if (dprintf(status->write_fd, "%s,\n",  				json_object_to_json_string(event_json)) < 0) {  		status_error(status, "[failed to write click event]");  	} | 
