aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
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/desktop/output.c
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/desktop/output.c')
-rw-r--r--sway/desktop/output.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 0bcdcac1..adc1ee10 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -329,15 +329,12 @@ static void send_frame_done(struct sway_output *output, struct timespec *when) {
329 workspace->current.fullscreen, &data); 329 workspace->current.fullscreen, &data);
330 container_for_each_child(workspace->current.fullscreen, 330 container_for_each_child(workspace->current.fullscreen,
331 send_frame_done_container_iterator, &data); 331 send_frame_done_container_iterator, &data);
332 if (config->popup_during_fullscreen == POPUP_SMART && 332 for (int i = 0; i < workspace->current.floating->length; ++i) {
333 workspace->current.fullscreen->view) { 333 struct sway_container *floater =
334 for (int i = 0; i < workspace->current.floating->length; ++i) { 334 workspace->current.floating->items[i];
335 struct sway_container *floater = 335 if (container_is_transient_for(floater,
336 workspace->current.floating->items[i]; 336 workspace->current.fullscreen)) {
337 if (floater->view && view_is_transient_for(floater->view, 337 send_frame_done_container_iterator(floater, &data);
338 workspace->current.fullscreen->view)) {
339 send_frame_done_container_iterator(floater, &data);
340 }
341 } 338 }
342 } 339 }
343#ifdef HAVE_XWAYLAND 340#ifdef HAVE_XWAYLAND