aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/workspace.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-19 02:49:13 +0200
committerGitHub <noreply@github.com>2018-10-19 02:49:13 +0200
commit19adc3ff2dc262ade0bc1a87895e49696224d5d0 (patch)
treecc3e83eae5042db2ca75b063413d4d8403e79a7a /sway/commands/workspace.c
parent30dbb8eba053fda2e17678feb6cebffc424e1e57 (diff)
parenta2fdac2c4b81b6da95b914a5f65fb297cb8d4ce4 (diff)
Merge pull request #2877 from RyanDwyer/warp-on-workspace-switch
Consider cursor warp when switching workspaces
Diffstat (limited to 'sway/commands/workspace.c')
-rw-r--r--sway/commands/workspace.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c
index 58c2201d..da597f8a 100644
--- a/sway/commands/workspace.c
+++ b/sway/commands/workspace.c
@@ -157,6 +157,7 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
free(name);
}
workspace_switch(ws, no_auto_back_and_forth);
+ seat_consider_warp_to_focus(config->handler_context.seat);
}
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}