mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
rootston: fix build without xwayland
This commit is contained in:
parent
e049610b47
commit
be888df4c3
1 changed files with 2 additions and 0 deletions
|
@ -518,6 +518,7 @@ static bool view_accept_damage(struct roots_output *output,
|
||||||
if (output->fullscreen_view == view) {
|
if (output->fullscreen_view == view) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#ifdef WLR_HAS_XWAYLAND
|
||||||
if (output->fullscreen_view->type == ROOTS_XWAYLAND_VIEW &&
|
if (output->fullscreen_view->type == ROOTS_XWAYLAND_VIEW &&
|
||||||
view->type == ROOTS_XWAYLAND_VIEW) {
|
view->type == ROOTS_XWAYLAND_VIEW) {
|
||||||
// Special case: accept damage from children
|
// Special case: accept damage from children
|
||||||
|
@ -529,6 +530,7 @@ static bool view_accept_damage(struct roots_output *output,
|
||||||
xsurface = xsurface->parent;
|
xsurface = xsurface->parent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue