From 39606f7a0b8c37230c239ecffb833790f3d8937b Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 8 Dec 2012 20:08:55 +0000 Subject: [PATCH] fix: input configuration dialogs no longer receive background input when config allow background input is off. recent regression --- BizHawk.MultiClient/Input/Input.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.MultiClient/Input/Input.cs b/BizHawk.MultiClient/Input/Input.cs index b8c0c2ec68..3a53dbe045 100644 --- a/BizHawk.MultiClient/Input/Input.cs +++ b/BizHawk.MultiClient/Input/Input.cs @@ -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