mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
layout: get_swayc_in_direction_under: Handle floating views.
This commit is contained in:
parent
b5ddad4bf6
commit
e31a899841
@ -574,7 +574,7 @@ swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_directio
|
||||
|
||||
if (can_move) {
|
||||
int desired = index_child(container) + diff;
|
||||
if (desired < 0 || desired >= parent->children->length) {
|
||||
if (container->is_floating || desired < 0 || desired >= parent->children->length) {
|
||||
can_move = false;
|
||||
} else {
|
||||
return parent->children->items[desired];
|
||||
|
Loading…
Reference in New Issue
Block a user