diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-12-15 09:51:56 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-15 09:51:56 +1000 |
commit | cd714cc12aa29e4676d248b3327b63ec1788c08f (patch) | |
tree | 778316e751e7934014197d400d98ab22c7604442 /sway/input/seat.c | |
parent | 1897edabbaf8755d1b124ab2e00c8f7d43dca57a (diff) | |
parent | c2499772b991a7e7a9384263810e3655da63c928 (diff) |
Merge pull request #3291 from RedSoxFan/fix-focus-nonvis
Fix focusing on non-visible workspace
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 1dd99cb2..f4098eb0 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -159,14 +159,6 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) { return; } - if (node->type == N_CONTAINER && - !workspace_is_visible(node->sway_container->workspace)) { - // Do not change the focus stack on a non-visible workspace. The focus - // will either be set when the workspace becomes visible or the - // workspace is now empty and will be destroyed - return; - } - // Find new focus_inactive (ie. sibling, or workspace if no siblings left) struct sway_node *next_focus = NULL; while (next_focus == NULL) { @@ -182,6 +174,12 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) { parent = node_get_parent(parent); } + if (next_focus->type == N_WORKSPACE && + !workspace_is_visible(next_focus->sway_workspace)) { + // Do not change focus to a non-visible workspace + return; + } + if (needs_new_focus) { // The structure change might have caused it to move up to the top of // the focus stack without sending focus notifications to the view |