Browse Source

[Input] Do not add key labels to the default actions, to display it correctly in the UI.

bruvzg 2 years ago
parent
commit
57b5d112f7
1 changed files with 0 additions and 1 deletions
  1. 0 1
      core/input/input_event.cpp

+ 0 - 1
core/input/input_event.cpp

@@ -478,7 +478,6 @@ Ref<InputEventKey> InputEventKey::create_reference(Key p_keycode) {
 	Ref<InputEventKey> ie;
 	Ref<InputEventKey> ie;
 	ie.instantiate();
 	ie.instantiate();
 	ie->set_keycode(p_keycode & KeyModifierMask::CODE_MASK);
 	ie->set_keycode(p_keycode & KeyModifierMask::CODE_MASK);
-	ie->set_key_label(p_keycode & KeyModifierMask::CODE_MASK);
 	ie->set_unicode(char32_t(p_keycode & KeyModifierMask::CODE_MASK));
 	ie->set_unicode(char32_t(p_keycode & KeyModifierMask::CODE_MASK));
 
 
 	if ((p_keycode & KeyModifierMask::SHIFT) != Key::NONE) {
 	if ((p_keycode & KeyModifierMask::SHIFT) != Key::NONE) {