From e4cd7a3449e409642d29669c4160a3bbc26bee1f Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Nov 2014 01:09:06 +0000 Subject: [PATCH] Lua Console - when reporting a script error, update the number of active scripts label --- BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index a5f64d58fd..aedd9a5c0f 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -92,6 +92,7 @@ namespace BizHawk.Client.EmuHawk OutputBox.Text += message + Environment.NewLine + Environment.NewLine; OutputBox.SelectionStart = OutputBox.Text.Length; OutputBox.ScrollToCaret(); + UpdateNumberOfScripts(); } private void LuaConsole_Load(object sender, EventArgs e)