diff options
| author | Luminarys <kizunanohikari@gmail.com> | 2015-08-17 10:22:00 -0500 |
|---|---|---|
| committer | Luminarys <kizunanohikari@gmail.com> | 2015-08-17 10:22:00 -0500 |
| commit | 3f475f5009974a5dcdfe12f578208a4fd92c84ba (patch) | |
| tree | 13720d64f9c8dc220ce32f9cb3188344dffc8d2e | |
| parent | 47ec999e7184d29c2911af20ce696d1f4e948e29 (diff) | |
| download | sway-3f475f5009974a5dcdfe12f578208a4fd92c84ba.tar.xz | |
Minor fix to do proper floating refocuses
| -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; } |
