Merge pull request #47596 from EricEzaM/PR/fix-editor-settings-shortcuts-wrong-button-action

Fixed Editor Shortcuts revert/edit/clear buttons performing the wrong action
This commit is contained in:
Rémi Verschelde 2021-04-10 11:04:50 +02:00 committed by GitHub
commit d3c492b7d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -393,9 +393,10 @@ void EditorSettingsDialog::_shortcut_button_pressed(Object *p_item, int p_column
TreeItem *ti = Object::cast_to<TreeItem>(p_item);
ERR_FAIL_COND(!ti);
button_idx = p_idx;
if (ti->get_metadata(0) == "Common") {
// Editing a Built-in action, which can have multiple bindings.
button_idx = p_idx;
editing_action = true;
current_action = ti->get_text(0);