rootston: fix build without xwayland

This commit is contained in:
emersion 2018-01-28 21:38:29 +01:00
parent e049610b47
commit be888df4c3
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 2 additions and 0 deletions

View File

@ -518,6 +518,7 @@ static bool view_accept_damage(struct roots_output *output,
if (output->fullscreen_view == view) {
return true;
}
#ifdef WLR_HAS_XWAYLAND
if (output->fullscreen_view->type == ROOTS_XWAYLAND_VIEW &&
view->type == ROOTS_XWAYLAND_VIEW) {
// Special case: accept damage from children
@ -529,6 +530,7 @@ static bool view_accept_damage(struct roots_output *output,
xsurface = xsurface->parent;
}
}
#endif
return false;
}