mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
rootston: unmap view after emitting destroy signal in view_destroy
This commit is contained in:
parent
c1c88bfe5d
commit
125138f1a0
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue