From a9756b60a2e3e020f40b2f48aea1daefc0c1bedd Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 3 Dec 2022 00:10:32 +1000 Subject: [PATCH] Clear OSD + surfaces when removing a Lua script (resolves #3014) they were already being cleared when closing the Lua Console note the "Erase Stale/Stuck Lua Drawing Layers" button does not clear OSD, leaving that as it is for now --- src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index 3f8b5ad79c..0940a1850e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -948,6 +948,8 @@ namespace BizHawk.Client.EmuHawk } UpdateDialog(); + DisplayManager.ClearApiHawkSurfaces(); + DisplayManager.OSD.ClearGuiText(); } }