sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 8cc26130a66f533a5cbb8e4833a536dd8798f833
parent c969923aba29797c8ae6f7a7fe0a298a2f7c52f9
Author: emersion <contact@emersion.fr>
Date:   Mon,  2 Jul 2018 13:29:25 +0100

Merge pull request #2194 from RyanDwyer/fix-incorrect-render

Don't return pending children in seat_get_active_current_child
Diffstat:
Msway/input/seat.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sway/input/seat.c b/sway/input/seat.c @@ -832,12 +832,12 @@ struct sway_container *seat_get_active_child(struct sway_seat *seat, struct sway_container *seat_get_active_current_child(struct sway_seat *seat, struct sway_container *container) { - struct sway_container *child = seat_get_active_child(seat, container); - if (child) { - return child; - } - if (container->current.children->length == 1) { - return container->current.children->items[0]; + struct sway_seat_container *current = NULL; + wl_list_for_each(current, &seat->focus_stack, link) { + if (current->container->current.parent == container && + current->container->current.layout != L_FLOATING) { + return current->container; + } } return NULL; }