fix: input configuration dialogs no longer receive background input when config allow background input is off. recent regression
This commit is contained in:
parent
8b08946c41
commit
39606f7a0b
|
@ -287,6 +287,7 @@ namespace BizHawk.MultiClient
|
|||
public string GetNextBindEvent()
|
||||
{
|
||||
if (InputEvents.Count == 0) return null;
|
||||
if (!Global.MainForm.AllowInput) return null;
|
||||
|
||||
//we only listen to releases for input binding, because we need to distinguish releases of pure modifierkeys from modified keys
|
||||
//if you just pressed ctrl, wanting to bind ctrl, we'd see: pressed:ctrl, unpressed:ctrl
|
||||
|
|
Loading…
Reference in New Issue