Use name_json if available, rather than non-descriptive name.
This commit is contained in:
parent
833e4233fc
commit
6e59d693d2
|
@ -243,7 +243,10 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
|
|||
dump_rect(gen, "geometry", con->geometry);
|
||||
|
||||
ystr("name");
|
||||
ystr(con->name);
|
||||
if (con->window && con->window->name_json)
|
||||
ystr(con->window->name_json);
|
||||
else
|
||||
ystr(con->name);
|
||||
|
||||
if (con->type == CT_WORKSPACE) {
|
||||
ystr("num");
|
||||
|
|
Loading…
Reference in New Issue