aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-27 18:06:50 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-27 18:06:50 -0500
commit783fadab284c79c8e13625e5e2a2eefae02c75d3 (patch)
tree795c5c69a7fcfc9336115ac157a41b943190f206 /sway/input/seat.c
parentMerge pull request #3519 from emersion/pointer-frame (diff)
parentImplement fullscreen global (diff)
downloadsway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.gz
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.zst
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.zip
Merge pull request #3423 from RyanDwyer/fullscreen-global
Implement fullscreen global
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index b6ccd830..8cb1d8e9 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -752,6 +752,18 @@ void seat_set_focus(struct sway_seat *seat, struct sway_node *node) {
752 return; 752 return;
753 } 753 }
754 } 754 }
755 // Deny setting focus to a workspace node when using fullscreen global
756 if (root->fullscreen_global && !container && new_workspace) {
757 return;
758 }
759 // Deny setting focus to a view which is hidden by a fullscreen global
760 if (root->fullscreen_global && container != root->fullscreen_global &&
761 !container_has_ancestor(container, root->fullscreen_global)) {
762 // Unless it's a transient container
763 if (!container_is_transient_for(container, root->fullscreen_global)) {
764 return;
765 }
766 }
755 767
756 struct sway_output *new_output = new_workspace->output; 768 struct sway_output *new_output = new_workspace->output;
757 769