fix crash on floating windows

This commit is contained in:
dudemanguy 2018-07-11 10:08:33 -05:00
parent 73084c5fa6
commit 600c126150
1 changed files with 3 additions and 1 deletions

View File

@ -671,7 +671,9 @@ void seat_set_focus_warp(struct sway_seat *seat,
// This must happen for both the pending and current children lists.
if (container_is_floating(container)) {
list_move_to_end(container->parent->children, container);
list_move_to_end(container->parent->current.children, container);
if (container_has_ancestor(container, container->current.parent)) {
list_move_to_end(container->parent->current.children, container);
}
}
// clean up unfocused empty workspace on new output