aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 53fb2ed7..1dd99cb2 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -159,6 +159,14 @@ 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) {