summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 8a81cd76..5035316e 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -231,6 +231,8 @@ static bool cmd_floating(struct sway_config *config, int argc, char **argv) {
231 else { 231 else {
232 add_sibling(focused, view); 232 add_sibling(focused, view);
233 } 233 }
234 // Refocus on the view once its been put back into the layout
235 focus_view(view);
234 arrange_windows(active_workspace, -1, -1); 236 arrange_windows(active_workspace, -1, -1);
235 return true; 237 return true;
236 } 238 }