rootston: fix segfault when destroying unmapped xwayland view
This happens when closing chromium for instance.
This commit is contained in:
parent
bde255933e
commit
bed7522108
|
@ -414,7 +414,9 @@ static void output_damage_whole_surface(struct roots_output *output,
|
||||||
|
|
||||||
void output_damage_whole_view(struct roots_output *output,
|
void output_damage_whole_view(struct roots_output *output,
|
||||||
struct roots_view *view) {
|
struct roots_view *view) {
|
||||||
|
if (view->wlr_surface != NULL) {
|
||||||
output_damage_whole_surface(output, view->wlr_surface, view->x, view->y);
|
output_damage_whole_surface(output, view->wlr_surface, view->x, view->y);
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: subsurfaces, popups, etc
|
// TODO: subsurfaces, popups, etc
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue