rootston: unmap view after emitting destroy signal in view_destroy

This commit is contained in:
emersion 2018-03-13 12:34:29 +01:00
parent c1c88bfe5d
commit 125138f1a0
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 2 additions and 2 deletions

View File

@ -417,12 +417,12 @@ void view_destroy(struct roots_view *view) {
return;
}
wl_signal_emit(&view->events.destroy, view);
if (view->wlr_surface != NULL) {
view_unmap(view);
}
wl_signal_emit(&view->events.destroy, view);
if (view->destroy) {
view->destroy(view);
}