aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Patrick Hilhorst <git@hilhorst.be>2021-11-22 19:44:22 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2022-01-18 13:25:53 +0100
commitb2ee964434b25a0ccbccb1486b027f69ef34acff (patch)
tree32c5bf66359ade6c2367f4ece73deafce1b8ffc7
parentinput/cursor: treat swipe begin as idle activity too (diff)
downloadsway-b2ee964434b25a0ccbccb1486b027f69ef34acff.tar.gz
sway-b2ee964434b25a0ccbccb1486b027f69ef34acff.tar.zst
sway-b2ee964434b25a0ccbccb1486b027f69ef34acff.zip
treat fullscreen windows as 'tiled' for commands/focus
-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 9875f631..2e8584c9 100644
--- a/sway/commands/focus.c
+++ b/sway/commands/focus.c
@@ -451,7 +451,8 @@ struct cmd_results *cmd_focus(int argc, char **argv) {
451 return cmd_results_new(CMD_FAILURE, ""); 451 return cmd_results_new(CMD_FAILURE, "");
452 } 452 }
453 struct sway_node *next_focus = NULL; 453 struct sway_node *next_focus = NULL;
454 if (container_is_floating(container)) { 454 if (container_is_floating(container) &&
455 container->pending.fullscreen_mode == FULLSCREEN_NONE) {
455 next_focus = node_get_in_direction_floating(container, seat, direction); 456 next_focus = node_get_in_direction_floating(container, seat, direction);
456 } else { 457 } else {
457 next_focus = node_get_in_direction_tiling(container, seat, direction, descend); 458 next_focus = node_get_in_direction_tiling(container, seat, direction, descend);