aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/focus.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/focus.c')
-rw-r--r--sway/commands/focus.c3
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(
160 // Check a different output 160 // Check a different output
161 struct sway_output *output = container->workspace->output; 161 struct sway_output *output = container->workspace->output;
162 struct sway_output *new_output = output_get_in_direction(output, dir); 162 struct sway_output *new_output = output_get_in_direction(output, dir);
163 if (new_output) { 163 if ((config->focus_wrapping != WRAP_WORKSPACE ||
164 container->node.type == N_WORKSPACE) && new_output) {
164 return get_node_in_output_direction(new_output, dir); 165 return get_node_in_output_direction(new_output, dir);
165 } 166 }
166 167