ipc: change border_style to human-readable string instead of enum value

This commit is contained in:
Michael Stapelberg 2011-05-11 20:39:18 +02:00
parent eb8ad348b2
commit 9c05c18156
2 changed files with 12 additions and 2 deletions

View File

@ -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);

View File

@ -30,7 +30,7 @@ my $expected = {
focus => ignore(),
focused => 0,
urgent => 0,
border => 0,
border => 'normal',
'floating_nodes' => ignore(),
};