2
0
Эх сурвалжийг харах

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
Rémi Verschelde 4 жил өмнө
parent
commit
d3c492b7d4

+ 2 - 1
editor/settings_config_dialog.cpp

@@ -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);