1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-29 21:05:59 +02:00

Fixed hoverwatch closing crash

This commit is contained in:
Brian Fiete 2020-09-10 11:26:46 -07:00
parent 6b6be04a22
commit 5572a7d279

View file

@ -364,7 +364,10 @@ namespace IDE.ui
listView.RemoveSelf();
}
else
Widget.RemoveAndDelete(listView);
{
listView.RemoveSelf();
gApp.DeferDelete(listView);
}
}
mListViews.Clear();
}