Преглед изворни кода

Merge pull request #32406 from YeldhamDev/fix_action_move_crash

Fix crash when moving an action into itself in the Input Map editor
Rémi Verschelde пре 6 година
родитељ
комит
e128c2c338
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      editor/project_settings_editor.cpp

+ 1 - 1
editor/project_settings_editor.cpp

@@ -1078,7 +1078,7 @@ bool ProjectSettingsEditor::can_drop_data_fw(const Point2 &p_point, const Varian
 
 	TreeItem *selected = input_editor->get_selected();
 	TreeItem *item = input_editor->get_item_at_position(p_point);
-	if (!selected || !item || item->get_parent() == selected)
+	if (!selected || !item || item == selected || item->get_parent() == selected)
 		return false;
 
 	return true;