sway

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

commit b52e005346507d8999395b235009b67287b1b492
parent b29beb1aa05431c5166afd4ef8d90c753fd9570a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 26 Oct 2018 16:02:11 +0200

Merge pull request #2989 from RyanDwyer/fix-focus-glitchiness

Fix focus after a non-visible workspace's last container is destroyed
Diffstat:
Msway/input/seat.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sway/input/seat.c b/sway/input/seat.c @@ -185,7 +185,11 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) { seat_set_focus(seat, next_focus); } else { // Setting focus_inactive + focus = seat_get_focus_inactive(seat, &root->node); seat_set_raw_focus(seat, next_focus); + if (focus->type == N_CONTAINER) { + seat_set_raw_focus(seat, &focus->sway_container->workspace->node); + } seat_set_raw_focus(seat, focus); } }