mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
rootston: don't send frame done if wlr_output manages the surface
This commit is contained in:
parent
6f8eca2b3a
commit
dc77b4c8c6
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue