Explorar o código

Merge pull request #35078 from akien-mga/animation-editor-duplicate-name

Animation editor: Set resource name when duplicating
Rémi Verschelde %!s(int64=5) %!d(string=hai) anos
pai
achega
087ffc8b5a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      editor/plugins/animation_player_editor_plugin.cpp

+ 1 - 1
editor/plugins/animation_player_editor_plugin.cpp

@@ -997,9 +997,9 @@ void AnimationPlayerEditor::_animation_duplicate() {
 
 	String new_name = current;
 	while (player->has_animation(new_name)) {
-
 		new_name = new_name + " (copy)";
 	}
+	new_anim->set_name(new_name);
 
 	undo_redo->create_action(TTR("Duplicate Animation"));
 	undo_redo->add_do_method(player, "add_animation", new_name, new_anim);