summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/tree/workspace.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 588e2aae..687d9c95 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -412,6 +412,11 @@ bool workspace_switch(struct sway_container *workspace) {
412 has_sticky = true; 412 has_sticky = true;
413 container_remove_child(floater); 413 container_remove_child(floater);
414 container_add_child(workspace->sway_workspace->floating, floater); 414 container_add_child(workspace->sway_workspace->floating, floater);
415 if (floater == focus) {
416 seat_set_focus(seat, NULL);
417 seat_set_focus(seat, floater);
418 }
419 --i;
415 } 420 }
416 } 421 }
417 422