add deco_rect property to con in ipc response
Patch status: needinfo
Patch by cornerman
To apply this patch, use:
curl http://cr.i3wm.org/patch/669/raw.patch | git am
b/src/ipc.c
13 |
@@ -347,6 +347,7 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) { |
14 |
y(integer, con->current_border_width); |
15 |
|
16 |
dump_rect(gen, "rect", con->rect); |
17 |
+ dump_rect(gen, "deco_rect", con->deco_rect); |
18 |
dump_rect(gen, "window_rect", con->window_rect); |
19 |
dump_rect(gen, "geometry", con->geometry); |
20 |
|