diff options
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
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) { else { add_sibling(focused, view); } + // Refocus on the view once its been put back into the layout + focus_view(view); arrange_windows(active_workspace, -1, -1); return true; } |