summaryrefslogtreecommitdiffstats
path: root/editor/input_event_configuration_dialog.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-06-06 10:50:46 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-06-06 10:55:00 +0300
commitc3cb846f7200280602669bd320ff4a3f518932e4 (patch)
tree714730f4a9cfbed32226f18d55bd4f367d20af84 /editor/input_event_configuration_dialog.cpp
parente7d2e49688bdaec65e326e7b2bfcc0642b4f2a8d (diff)
downloadredot-engine-c3cb846f7200280602669bd320ff4a3f518932e4.tar.gz
[Input Map] Generate missing values instead of disabling options.
Diffstat (limited to 'editor/input_event_configuration_dialog.cpp')
-rw-r--r--editor/input_event_configuration_dialog.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/editor/input_event_configuration_dialog.cpp b/editor/input_event_configuration_dialog.cpp
index c2b8992b69..430e81466e 100644
--- a/editor/input_event_configuration_dialog.cpp
+++ b/editor/input_event_configuration_dialog.cpp
@@ -107,6 +107,33 @@ void InputEventConfigurationDialog::_set_event(const Ref<InputEvent> &p_event, c
// Update mode selector based on original key event.
Ref<InputEventKey> ko = p_original_event;
if (ko.is_valid()) {
+ if (ko->get_keycode() == Key::NONE) {
+ if (ko->get_physical_keycode() != Key::NONE) {
+ ko->set_keycode(ko->get_physical_keycode());
+ }
+ if (ko->get_key_label() != Key::NONE) {
+ ko->set_keycode(fix_keycode((char32_t)ko->get_key_label(), Key::NONE));
+ }
+ }
+
+ if (ko->get_physical_keycode() == Key::NONE) {
+ if (ko->get_keycode() != Key::NONE) {
+ ko->set_physical_keycode(ko->get_keycode());
+ }
+ if (ko->get_key_label() != Key::NONE) {
+ ko->set_physical_keycode(fix_keycode((char32_t)ko->get_key_label(), Key::NONE));
+ }
+ }
+
+ if (ko->get_key_label() == Key::NONE) {
+ if (ko->get_keycode() != Key::NONE) {
+ ko->set_key_label(fix_key_label((char32_t)ko->get_keycode(), Key::NONE));
+ }
+ if (ko->get_physical_keycode() != Key::NONE) {
+ ko->set_key_label(fix_key_label((char32_t)ko->get_physical_keycode(), Key::NONE));
+ }
+ }
+
key_mode->set_item_disabled(KEYMODE_KEYCODE, ko->get_keycode() == Key::NONE);
key_mode->set_item_disabled(KEYMODE_PHY_KEYCODE, ko->get_physical_keycode() == Key::NONE);
key_mode->set_item_disabled(KEYMODE_UNICODE, ko->get_key_label() == Key::NONE);