mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
treat fullscreen windows as 'tiled' for commands/focus
This commit is contained in:
parent
7d1ccafae5
commit
b2ee964434
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user