Bugfix: fix fullscreen mode for floating windows

next
Michael Stapelberg 2011-01-07 02:50:35 +01:00
parent 55b6d31e4a
commit 5ccd7b01e7
1 changed files with 6 additions and 0 deletions

View File

@ -273,6 +273,12 @@ Con *con_get_fullscreen_con(Con *con) {
entry->con = child;
TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
}
TAILQ_FOREACH(child, &(current->floating_head), floating_windows) {
entry = smalloc(sizeof(struct bfs_entry));
entry->con = child;
TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
}
}
return NULL;