diff options
author | emersion <contact@emersion.fr> | 2018-04-02 15:24:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 15:24:25 -0400 |
commit | 0c0cc79282b5ce29616893977aca629f90521988 (patch) | |
tree | e06d46f222487c4d266c09892d1907ce80b69a66 /sway/commands/workspace.c | |
parent | 4134407fa967c7f45cd09554b74a15f28974fca5 (diff) | |
parent | c7a6524954578977dd8f806713a258a0947a4951 (diff) |
Merge pull request #1699 from acrisci/seat-fixes
Seat fixes and cleanup
Diffstat (limited to 'sway/commands/workspace.c')
-rw-r--r-- | sway/commands/workspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c index 8f39e5fc..aa4096f7 100644 --- a/sway/commands/workspace.c +++ b/sway/commands/workspace.c @@ -91,7 +91,7 @@ struct cmd_results *cmd_workspace(int argc, char **argv) { } workspace_switch(ws); current_container = - sway_seat_get_focus(config->handler_context.seat); + seat_get_focus(config->handler_context.seat); struct sway_container *new_output = container_parent(current_container, C_OUTPUT); if (config->mouse_warping && old_output != new_output) { |