mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
rootston: fix sending frame done to undefined view
This commit is contained in:
parent
dc77b4c8c6
commit
00e647e161
1 changed files with 2 additions and 1 deletions
|
@ -535,7 +535,8 @@ damage_finish:
|
|||
|
||||
// Send frame done events to all surfaces
|
||||
if (output->fullscreen_view != NULL) {
|
||||
if (wlr_output->fullscreen_surface == output->fullscreen_view->wlr_surface) {
|
||||
struct roots_view *view = output->fullscreen_view;
|
||||
if (wlr_output->fullscreen_surface == view->wlr_surface) {
|
||||
// The surface is managed by the wlr_output
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue