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 84b7706 commit ecfb26cCopy full SHA for ecfb26c
source/Config.gd
@@ -112,7 +112,8 @@ func handle_key_remaps():
112
if ev is InputEventKey:
113
InputMap.action_erase_event(key, ev)
114
if key in _implicit_mappings:
115
- InputMap.action_erase_event(_implicit_mappings[key], ev)
+ for impl_ev in InputMap.action_get_events(_implicit_mappings[key]):
116
+ InputMap.action_erase_event(_implicit_mappings[key], impl_ev)
117
for code in keys[key]:
118
handle_key_remap(key, KEY_NONE, code)
119
if _implicit_mappings.has(key):
0 commit comments