diff options
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/commands.c b/sway/commands.c index 9ce1d83e..40d9d353 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -104,13 +104,13 @@ int cmd_focus(struct sway_config *config, int argc, char **argv) { return 1; } if (strcasecmp(argv[0], "left") == 0) { - move_focus(MOVE_LEFT); + return move_focus(MOVE_LEFT); } else if (strcasecmp(argv[0], "right") == 0) { - move_focus(MOVE_RIGHT); + return move_focus(MOVE_RIGHT); } else if (strcasecmp(argv[0], "up") == 0) { - move_focus(MOVE_UP); + return move_focus(MOVE_UP); } else if (strcasecmp(argv[0], "down") == 0) { - move_focus(MOVE_DOWN); + return move_focus(MOVE_DOWN); } else if (strcasecmp(argv[0], "parent") == 0) { swayc_t *current = get_focused_container(&root_container); if (current && current->parent) { |