From 4356b5abf890769349e3b27b82d1e8a5a50d9d6e Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Thu, 23 Jun 2022 13:03:38 +0800 Subject: [PATCH] Fix prompt dialog title for Animation operations --- editor/plugins/animation_player_editor_plugin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/editor/plugins/animation_player_editor_plugin.cpp b/editor/plugins/animation_player_editor_plugin.cpp index 1fe37e77586..a6418c417ab 100644 --- a/editor/plugins/animation_player_editor_plugin.cpp +++ b/editor/plugins/animation_player_editor_plugin.cpp @@ -327,6 +327,7 @@ void AnimationPlayerEditor::_animation_new() { } name->set_text(base); + name_dialog->set_title(TTR("Create New Animation")); name_dialog->popup_centered(Size2(300, 90)); name->select_all(); name->grab_focus(); @@ -341,6 +342,7 @@ void AnimationPlayerEditor::_animation_rename() { name_title->set_text(TTR("Change Animation Name:")); name->set_text(selected_name); name_dialog_op = TOOL_RENAME_ANIM; + name_dialog->set_title(TTR("Rename Animation")); name_dialog->popup_centered(Size2(300, 90)); name->select_all(); name->grab_focus(); @@ -1005,6 +1007,7 @@ void AnimationPlayerEditor::_animation_duplicate() { name_title->set_text(TTR("New Animation Name:")); name->set_text(new_name); name_dialog_op = TOOL_DUPLICATE_ANIM; + name_dialog->set_title(TTR("Duplicate Animation")); name_dialog->popup_centered(Size2(300, 90)); name->select_all(); name->grab_focus(); @@ -1697,7 +1700,6 @@ AnimationPlayerEditor::AnimationPlayerEditor(EditorNode *p_editor, AnimationPlay add_child(file); name_dialog = memnew(ConfirmationDialog); - name_dialog->set_title(TTR("Create New Animation")); name_dialog->set_hide_on_ok(false); add_child(name_dialog); VBoxContainer *vb = memnew(VBoxContainer);