aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-01-27 18:06:50 -0500
committerGitHub <noreply@github.com>2019-01-27 18:06:50 -0500
commit783fadab284c79c8e13625e5e2a2eefae02c75d3 (patch)
tree795c5c69a7fcfc9336115ac157a41b943190f206 /sway/input/seat.c
parent897250c65fb4d7123361dc6f77c2824179ed8885 (diff)
parent20aa8ee67dc528299dbc8735220a1c081c7ff9f6 (diff)
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) {
return;
}
}
+ // Deny setting focus to a workspace node when using fullscreen global
+ if (root->fullscreen_global && !container && new_workspace) {
+ return;
+ }
+ // Deny setting focus to a view which is hidden by a fullscreen global
+ if (root->fullscreen_global && container != root->fullscreen_global &&
+ !container_has_ancestor(container, root->fullscreen_global)) {
+ // Unless it's a transient container
+ if (!container_is_transient_for(container, root->fullscreen_global)) {
+ return;
+ }
+ }
struct sway_output *new_output = new_workspace->output;