Added test case for transfer of urgency flag when moving a window to a mark.

This commit is contained in:
Ingo Bürk
2015-04-15 21:33:59 +02:00
parent dc19ff9ec5
commit a59fe0d3d2
2 changed files with 38 additions and 11 deletions

View File

@ -145,8 +145,7 @@ static void _con_attach(Con *con, Con *parent, Con *previous, bool ignore_focus)
/* Insert the container after the tiling container, if found.
* When adding to a CT_OUTPUT, just append one after another. */
if (current && parent->type != CT_OUTPUT) {
DLOG("Inserting con = %p after last focused tiling con %p\n",
con, current);
DLOG("Inserting con = %p after con %p\n", con, current);
TAILQ_INSERT_AFTER(nodes_head, current, con, nodes);
} else
TAILQ_INSERT_TAIL(nodes_head, con, nodes);