From: Orestis Date: Sat, 28 Apr 2018 12:47:28 +0000 (+0300) Subject: send_tick: set "first" field (#3271) X-Git-Tag: 4.16~87 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6f11b6fa4a784e85a1b74cb7ff74058023ce30aa;p=i3%2Fi3 send_tick: set "first" field (#3271) According to the docs, the tick event should return: { "first": false, "payload": "arbitrary string" } --- diff --git a/src/ipc.c b/src/ipc.c index eebb576e..2ac09d7d 100644 --- a/src/ipc.c +++ b/src/ipc.c @@ -1127,6 +1127,9 @@ IPC_HANDLER(send_tick) { y(map_open); + ystr("first"); + y(bool, false); + ystr("payload"); yajl_gen_string(gen, (unsigned char *)message, message_size);