From: Michael Stapelberg Date: Wed, 11 May 2011 18:39:18 +0000 (+0200) Subject: ipc: change border_style to human-readable string instead of enum value X-Git-Tag: tree-pr3~44 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9c05c1815625b10ec397c12730b3ce4ad4986d84;p=i3%2Fi3 ipc: change border_style to human-readable string instead of enum value --- diff --git a/src/ipc.c b/src/ipc.c index d0dc1920..0535d122 100644 --- a/src/ipc.c +++ b/src/ipc.c @@ -206,7 +206,17 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) { y(integer, con->layout); ystr("border"); - y(integer, con->border_style); + switch (con->border_style) { + case BS_NORMAL: + ystr("normal"); + break; + case BS_NONE: + ystr("none"); + break; + case BS_1PIXEL: + ystr("1pixel"); + break; + } dump_rect(gen, "rect", con->rect); dump_rect(gen, "window_rect", con->window_rect); diff --git a/testcases/t/16-nestedcons.t b/testcases/t/16-nestedcons.t index e8a124f9..954732dd 100644 --- a/testcases/t/16-nestedcons.t +++ b/testcases/t/16-nestedcons.t @@ -30,7 +30,7 @@ my $expected = { focus => ignore(), focused => 0, urgent => 0, - border => 0, + border => 'normal', 'floating_nodes' => ignore(), };