summaryrefslogtreecommitdiff
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorRyan Dwyer <[email protected]>2018-10-08 23:00:36 +1000
committerRyan Dwyer <[email protected]>2018-10-08 23:00:36 +1000
commitf23588de3c7085830614f6764a5c0cd262538afd (patch)
tree6460aecbaf206dffcc4ffb546c4a8143025b82db /sway/tree/container.c
parent832ebc896655cb5ca7689559d4e42b426d764e71 (diff)
Introduce container_is_transient_for
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 9db7aed1..1664514a 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -1212,3 +1212,10 @@ struct sway_container *container_split(struct sway_container *child,
return cont;
}
+
+bool container_is_transient_for(struct sway_container *child,
+ struct sway_container *ancestor) {
+ return config->popup_during_fullscreen == POPUP_SMART &&
+ child->view && ancestor->view &&
+ view_is_transient_for(child->view, ancestor->view);
+}