summaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index cfb5a710..adc1ee10 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -329,6 +329,14 @@ 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 for (int i = 0; i < workspace->current.floating->length; ++i) {
333 struct sway_container *floater =
334 workspace->current.floating->items[i];
335 if (container_is_transient_for(floater,
336 workspace->current.fullscreen)) {
337 send_frame_done_container_iterator(floater, &data);
338 }
339 }
332#ifdef HAVE_XWAYLAND 340#ifdef HAVE_XWAYLAND
333 send_frame_done_unmanaged(output, &root->xwayland_unmanaged, when); 341 send_frame_done_unmanaged(output, &root->xwayland_unmanaged, when);
334#endif 342#endif