We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12c8460 commit ef782a9Copy full SHA for ef782a9
Runtime/DevConsoleMono.cs
@@ -741,8 +741,8 @@ private void LateUpdate()
741
}
742
743
744
- // Check bindings (as long as the input field isn't focused!)
745
- if (BindingsIsEnabled && !_inputField.isFocused)
+ // Check bindings (as long as the input field or any other object isn't focused!)
+ if (BindingsIsEnabled && !_inputField.isFocused && (EventSystem.current == null || EventSystem.current.currentSelectedGameObject == null))
746
{
747
try
748
0 commit comments