From dc77b4c8c648c9a19b540fa3402d5400523fa452 Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 20 Feb 2018 16:17:23 +0100 Subject: rootston: don't send frame done if wlr_output manages the surface --- rootston/output.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'rootston') diff --git a/rootston/output.c b/rootston/output.c index 9dc9899b..127fec78 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -535,6 +535,11 @@ damage_finish: // Send frame done events to all surfaces if (output->fullscreen_view != NULL) { + if (wlr_output->fullscreen_surface == output->fullscreen_view->wlr_surface) { + // The surface is managed by the wlr_output + return; + } + view_for_each_surface(view, surface_send_frame_done, &data); #ifdef WLR_HAS_XWAYLAND -- cgit v1.2.3