diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-18 08:22:39 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-18 08:22:39 +0300 |
commit | 68e4ead9ad3d554e52b8e5acd34fae10966062f1 (patch) | |
tree | 4edfad77e4a5f15183b22ed0e5c9e5a9102d9275 /editor/input_event_configuration_dialog.cpp | |
parent | 4b7776e31bf91bd3d710277b505c196b38d8fff3 (diff) | |
download | redot-engine-68e4ead9ad3d554e52b8e5acd34fae10966062f1.tar.gz |
Fix input map shortcuts incorrectly edited on cancel.
Diffstat (limited to 'editor/input_event_configuration_dialog.cpp')
-rw-r--r-- | editor/input_event_configuration_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/input_event_configuration_dialog.cpp b/editor/input_event_configuration_dialog.cpp index e2aac6c75d..a667f94a62 100644 --- a/editor/input_event_configuration_dialog.cpp +++ b/editor/input_event_configuration_dialog.cpp @@ -587,7 +587,7 @@ void InputEventConfigurationDialog::_notification(int p_what) { void InputEventConfigurationDialog::popup_and_configure(const Ref<InputEvent> &p_event, const String &p_current_action_name) { if (p_event.is_valid()) { - _set_event(p_event->duplicate(), p_event); + _set_event(p_event->duplicate(), p_event->duplicate()); } else { // Clear Event _set_event(Ref<InputEvent>(), Ref<InputEvent>()); |