treat fullscreen windows as 'tiled' for commands/focus

(cherry picked from commit b2ee964434b25a0ccbccb1486b027f69ef34acff)
This commit is contained in:
Patrick Hilhorst 2021-11-22 19:44:22 +01:00 committed by Simon Ser
parent 7a5e62036d
commit cd1a0aa293

View file

@ -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);