Invert default of `LuaWinform.BlocksInputWhenFocused` (resolves #3591)

fixes 0591d2e2d; now matches 2.8 behaviour
just no pleasing you people
This commit is contained in:
YoshiRulz 2023-03-24 09:46:24 +10:00
parent 64512851fe
commit 10423abdf9
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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<IntPtr> formsWindowClosedCallback)
{