mirror of
https://github.com/swaywm/sway.git
synced 2024-11-17 21:49:16 +00:00
fix crash on floating windows
This commit is contained in:
parent
73084c5fa6
commit
600c126150
|
@ -671,8 +671,10 @@ void seat_set_focus_warp(struct sway_seat *seat,
|
||||||
// This must happen for both the pending and current children lists.
|
// This must happen for both the pending and current children lists.
|
||||||
if (container_is_floating(container)) {
|
if (container_is_floating(container)) {
|
||||||
list_move_to_end(container->parent->children, container);
|
list_move_to_end(container->parent->children, container);
|
||||||
|
if (container_has_ancestor(container, container->current.parent)) {
|
||||||
list_move_to_end(container->parent->current.children, container);
|
list_move_to_end(container->parent->current.children, container);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// clean up unfocused empty workspace on new output
|
// clean up unfocused empty workspace on new output
|
||||||
if (new_output_last_ws) {
|
if (new_output_last_ws) {
|
||||||
|
|
Loading…
Reference in a new issue