aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index f5cb2f9e..f418785d 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -655,7 +655,10 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
655 // Deny setting focus to a view which is hidden by a fullscreen container 655 // Deny setting focus to a view which is hidden by a fullscreen container
656 if (new_workspace && new_workspace->fullscreen && container && 656 if (new_workspace && new_workspace->fullscreen && container &&
657 !container_is_fullscreen_or_child(container)) { 657 !container_is_fullscreen_or_child(container)) {
658 return; 658 // Unless it's a transient container
659 if (!container_is_transient_for(container, new_workspace->fullscreen)) {
660 return;
661 }
659 } 662 }
660 663
661 struct sway_output *last_output = last_workspace ? 664 struct sway_output *last_output = last_workspace ?