subsurface: unlock surface on destroy

This commit is contained in:
Kirill Primak 2021-08-25 20:11:22 +03:00 committed by Simon Ser
parent 5dfaf5ea9c
commit 5f645598d8
1 changed files with 5 additions and 0 deletions

View File

@ -683,6 +683,11 @@ static void subsurface_destroy(struct wlr_subsurface *subsurface) {
return;
}
if (subsurface->has_cache) {
wlr_surface_unlock_cached(subsurface->surface,
subsurface->cached_seq);
}
subsurface_unmap(subsurface);
wlr_signal_emit_safe(&subsurface->events.destroy, subsurface);