From 1d8c088261d9d7e10d59cede7f1998eb30e8fd91 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 24 Sep 2024 12:25:16 +1000 Subject: [PATCH] Fix `--lua`/`--luaconsole` causing that window to open before MainForm --- src/BizHawk.Client.EmuHawk/MainForm.cs | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 1acec07611..bb4f61fba1 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -726,16 +726,19 @@ namespace BizHawk.Client.EmuHawk }; } - //start Lua Console if requested in the command line arguments - if (_argParser.luaConsole) + Shown += (_, _) => { - OpenLuaConsole(); - } - //load Lua Script if requested in the command line arguments - if (_argParser.luaScript != null) - { - _ = Tools.LuaConsole.LoadByFileExtension(_argParser.luaScript.MakeAbsolute(), out _); - } + //start Lua Console if requested in the command line arguments + if (_argParser.luaConsole) + { + OpenLuaConsole(); + } + //load Lua Script if requested in the command line arguments + if (_argParser.luaScript != null) + { + _ = Tools.LuaConsole.LoadByFileExtension(_argParser.luaScript.MakeAbsolute(), out _); + } + }; SetStatusBar();