diff options
author | Patrick Hilhorst <[email protected]> | 2021-11-22 19:44:22 +0100 |
---|---|---|
committer | Simon Ser <[email protected]> | 2022-01-21 13:13:16 +0100 |
commit | cd1a0aa29358cbc9f18517807cd9b329b67dd526 (patch) | |
tree | efae37ad1a6abb67a076f949e81e99831f9ed8a7 /sway/commands/focus.c | |
parent | 7a5e62036dededd0c161d4d9980f8d9e27627f7e (diff) |
treat fullscreen windows as 'tiled' for commands/focus
(cherry picked from commit b2ee964434b25a0ccbccb1486b027f69ef34acff)
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 ceb43d45..b8d28480 100644 --- a/sway/commands/focus.c +++ b/sway/commands/focus.c @@ -451,7 +451,8 @@ struct cmd_results *cmd_focus(int argc, char **argv) { return cmd_results_new(CMD_FAILURE, ""); } struct sway_node *next_focus = NULL; - if (container_is_floating(container)) { + if (container_is_floating(container) && + container->pending.fullscreen_mode == FULLSCREEN_NONE) { next_focus = node_get_in_direction_floating(container, seat, direction); } else { next_focus = node_get_in_direction_tiling(container, seat, direction, descend); |