bugfix: really return focus list in IPC tree dump (instead of nodes list)

next
Michael Stapelberg 2010-05-10 00:00:43 +02:00
parent 09523f36f5
commit f10a3d9b75
1 changed files with 5 additions and 5 deletions

View File

@ -161,16 +161,16 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
ystr("nodes");
y(array_open);
Con *leaf;
TAILQ_FOREACH(leaf, &(con->nodes_head), nodes) {
dump_node(gen, leaf, inplace_restart);
Con *node;
TAILQ_FOREACH(node, &(con->nodes_head), nodes) {
dump_node(gen, node, inplace_restart);
}
y(array_close);
ystr("focus");
y(array_open);
TAILQ_FOREACH(leaf, &(con->nodes_head), nodes) {
y(integer, (long int)leaf);
TAILQ_FOREACH(node, &(con->focus_head), nodes) {
y(integer, (long int)node);
}
y(array_close);