sway

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

commit 0bf380a0b1a83f49e2e33066ab6504d308dcec89
parent fa6292ff24082f90886353844b45e99ec965daa5
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 25 Aug 2015 16:13:06 -0400

Merge pull request #131 from nicklaswj/master

Focus floating window, if any, when the last tiling window has been closed
Diffstat:
Msway/handlers.c | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/sway/handlers.c b/sway/handlers.c @@ -230,7 +230,15 @@ static void handle_view_destroyed(wlc_handle handle) { locked_container_focus = false; break; } - set_focused_container(get_focused_view(&root_container)); + + swayc_t *focused_view = get_focused_view(&root_container); + if (focused_view->type == C_WORKSPACE && focused_view->children->length == 0) { + if (focused_view->floating->length > 0) { + focused_view = focused_view->floating->items[focused_view->floating->length-1]; + focused_view = get_focused_view(focused_view); + } + } + set_focused_container(focused_view); } static void handle_view_focus(wlc_handle view, bool focus) {