From 10423abdf9575d1cc3119e2d3b1aea1fc5f47dce Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 24 Mar 2023 09:46:24 +1000 Subject: [PATCH] Invert default of `LuaWinform.BlocksInputWhenFocused` (resolves #3591) fixes 0591d2e2d; now matches 2.8 behaviour just no pleasing you people --- src/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs index 0945148a4d..9164717705 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs @@ -13,7 +13,7 @@ namespace BizHawk.Client.EmuHawk private readonly string _currentDirectory = Environment.CurrentDirectory; private readonly LuaFile _ownerFile; - public bool BlocksInputWhenFocused { get; set; } = false; + public bool BlocksInputWhenFocused { get; set; } = true; public LuaWinform(LuaFile ownerFile, Action formsWindowClosedCallback) {