From 33a09540870bda341ac0ab8578f3bf47cd5c30c5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 12 Jul 2020 11:12:29 -0500 Subject: [PATCH] lua console - fix recent scripts not updating when creating a new script, opening a script, or duplicating a script. Might be other scenarios that are currently missing (regression from some refactors about a month ago) --- src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index 2e7f935ece..aee1ddf02b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -879,6 +879,7 @@ namespace BizHawk.Client.EmuHawk string defaultTemplate = "while true do\n\temu.frameadvance();\nend"; File.WriteAllText(sfd.FileName, defaultTemplate); LuaImp.ScriptList.Add(new LuaFile(Path.GetFileNameWithoutExtension(sfd.FileName), sfd.FileName)); + Config.RecentLua.Add(sfd.FileName); UpdateDialog(); Process.Start(new ProcessStartInfo { @@ -910,6 +911,7 @@ namespace BizHawk.Client.EmuHawk foreach (var file in ofd.FileNames) { LoadLuaFile(file); + Config.RecentLua.Add(file); } UpdateDialog(); @@ -1040,6 +1042,7 @@ namespace BizHawk.Client.EmuHawk string text = File.ReadAllText(script.Path); File.WriteAllText(sfd.FileName, text); LuaImp.ScriptList.Add(new LuaFile(Path.GetFileNameWithoutExtension(sfd.FileName), sfd.FileName)); + Config.RecentLua.Add(sfd.FileName); UpdateDialog(); Process.Start(new ProcessStartInfo {