Remove backing field of `FormBase.BlocksInputWhenFocused`

This commit is contained in:
YoshiRulz 2022-08-07 17:17:50 +10:00
parent 3958348e94
commit 322ed164bf
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ namespace BizHawk.Client.EmuHawk
private string? _windowTitleStatic;
public virtual bool BlocksInputWhenFocused { get; } = true;
public virtual bool BlocksInputWhenFocused
=> true;
public Config? Config { get; set; }