aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/move.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/move.c')
-rw-r--r--sway/commands/move.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index 0d0d9727..7bd1fe3e 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -686,6 +686,9 @@ static struct cmd_results *cmd_move_workspace(int argc, char **argv) {
686 arrange_output(old_output); 686 arrange_output(old_output);
687 arrange_output(new_output); 687 arrange_output(new_output);
688 688
689 struct sway_seat *seat = config->handler_context.seat;
690 seat_consider_warp_to_focus(seat);
691
689 return cmd_results_new(CMD_SUCCESS, NULL); 692 return cmd_results_new(CMD_SUCCESS, NULL);
690} 693}
691 694