diff options
author | lbonn <[email protected]> | 2019-10-16 20:27:19 +0200 |
---|---|---|
committer | Simon Ser <[email protected]> | 2019-10-17 13:48:52 +0300 |
commit | 3ee3a9ef60c6259720564bbedb0c74d545d2ec53 (patch) | |
tree | 186eb0a0abf72e20fda497f1827c7fa717056d5c /sway/commands/focus.c | |
parent | 74c0e7921ae13986eb7d79bfa263f7ddb9312440 (diff) |
focus: support focus_wrapping workspace
Following i3 support: https://github.com/i3/i3/pull/3407
Diffstat (limited to 'sway/commands/focus.c')
-rw-r--r-- | sway/commands/focus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/focus.c b/sway/commands/focus.c index 8baa616d..93d1effe 100644 --- a/sway/commands/focus.c +++ b/sway/commands/focus.c @@ -160,7 +160,8 @@ static struct sway_node *node_get_in_direction_tiling( // Check a different output struct sway_output *output = container->workspace->output; struct sway_output *new_output = output_get_in_direction(output, dir); - if (new_output) { + if ((config->focus_wrapping != WRAP_WORKSPACE || + container->node.type == N_WORKSPACE) && new_output) { return get_node_in_output_direction(new_output, dir); } |