Invert default of `LuaWinform.BlocksInputWhenFocused` (resolves #3591)
fixes 0591d2e2d; now matches 2.8 behaviour just no pleasing you people
This commit is contained in:
parent
64512851fe
commit
10423abdf9
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue