Lua console - dispose of scripts when closing the console window
This commit is contained in:
parent
27739a719b
commit
923565c350
|
@ -65,9 +65,14 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (AskSaveChanges())
|
||||
{
|
||||
SaveColumnInfo(LuaListView, Settings.Columns);
|
||||
CloseLua();
|
||||
|
||||
GlobalWin.DisplayManager.ClearLuaSurfaces();
|
||||
LuaImp.GuiLibrary.DrawFinish();
|
||||
foreach (var lua in _luaList)
|
||||
{
|
||||
lua.Thread.Dispose();
|
||||
}
|
||||
CloseLua();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue