mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-28 22:23:42 +01:00
Fix use-after-free when closing fullscreen views
This commit is contained in:
parent
cf14f37ee2
commit
d409620a55
1 changed files with 5 additions and 1 deletions
|
@ -252,8 +252,12 @@ static void handle_view_destroyed(wlc_handle handle) {
|
|||
}
|
||||
|
||||
if (view) {
|
||||
swayc_t *parent = destroy_view(view);
|
||||
bool fullscreen = swayc_is_fullscreen(view);
|
||||
remove_view_from_scratchpad(view);
|
||||
swayc_t *parent = destroy_view(view);
|
||||
if (fullscreen) {
|
||||
parent->fullscreen = NULL;
|
||||
}
|
||||
arrange_windows(parent, -1, -1);
|
||||
} else {
|
||||
// Is it unmanaged?
|
||||
|
|
Loading…
Reference in a new issue