aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-08 23:00:36 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-08 23:00:36 +1000
commitf23588de3c7085830614f6764a5c0cd262538afd (patch)
tree6460aecbaf206dffcc4ffb546c4a8143025b82db /sway/input
parentImplement popup_during_fullscreen (diff)
downloadsway-f23588de3c7085830614f6764a5c0cd262538afd.tar.gz
sway-f23588de3c7085830614f6764a5c0cd262538afd.tar.zst
sway-f23588de3c7085830614f6764a5c0cd262538afd.zip
Introduce container_is_transient_for
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c18
-rw-r--r--sway/input/seat.c6
2 files changed, 8 insertions, 16 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 08eeb812..6d57c45f 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -99,17 +99,13 @@ static struct sway_node *node_at_coords(
99 } 99 }
100 if (ws->fullscreen) { 100 if (ws->fullscreen) {
101 // Try transient containers 101 // Try transient containers
102 if (config->popup_during_fullscreen == POPUP_SMART && 102 for (int i = 0; i < ws->floating->length; ++i) {
103 ws->fullscreen->view) { 103 struct sway_container *floater = ws->floating->items[i];
104 for (int i = 0; i < ws->floating->length; ++i) { 104 if (container_is_transient_for(floater, ws->fullscreen)) {
105 struct sway_container *floater = ws->floating->items[i]; 105 struct sway_container *con = tiling_container_at(
106 if (floater->view && view_is_transient_for( 106 &floater->node, lx, ly, surface, sx, sy);
107 floater->view, ws->fullscreen->view)) { 107 if (con) {
108 struct sway_container *con = tiling_container_at( 108 return &con->node;
109 &floater->node, lx, ly, surface, sx, sy);
110 if (con) {
111 return &con->node;
112 }
113 } 109 }
114 } 110 }
115 } 111 }
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 690b59e6..f418785d 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -656,11 +656,7 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
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 // Unless it's a transient container 658 // Unless it's a transient container
659 bool is_transient = new_workspace->fullscreen->view && 659 if (!container_is_transient_for(container, new_workspace->fullscreen)) {
660 config->popup_during_fullscreen == POPUP_SMART &&
661 container->view && view_is_transient_for(
662 container->view, new_workspace->fullscreen->view);
663 if (!is_transient) {
664 return; 660 return;
665 } 661 }
666 } 662 }