diff options
Diffstat (limited to 'editor/plugins/version_control_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/version_control_editor_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/plugins/version_control_editor_plugin.cpp b/editor/plugins/version_control_editor_plugin.cpp index 6bac62d861..2fa54ac1dc 100644 --- a/editor/plugins/version_control_editor_plugin.cpp +++ b/editor/plugins/version_control_editor_plugin.cpp @@ -1443,18 +1443,18 @@ VersionControlEditorPlugin::VersionControlEditorPlugin() { extra_options_remove_branch_list = memnew(PopupMenu); extra_options_remove_branch_list->connect(SNAME("id_pressed"), callable_mp(this, &VersionControlEditorPlugin::_popup_branch_remove_confirm)); - extra_options_remove_branch_list->set_name("Remove Branch"); + extra_options_remove_branch_list->set_name("RemoveBranch"); extra_options->get_popup()->add_child(extra_options_remove_branch_list); - extra_options->get_popup()->add_submenu_item(TTR("Remove Branch"), "Remove Branch"); + extra_options->get_popup()->add_submenu_item(TTR("Remove Branch"), "RemoveBranch"); extra_options->get_popup()->add_separator(); extra_options->get_popup()->add_item(TTR("Create New Remote"), EXTRA_OPTION_CREATE_REMOTE); extra_options_remove_remote_list = memnew(PopupMenu); extra_options_remove_remote_list->connect(SNAME("id_pressed"), callable_mp(this, &VersionControlEditorPlugin::_popup_remote_remove_confirm)); - extra_options_remove_remote_list->set_name("Remove Remote"); + extra_options_remove_remote_list->set_name("RemoveRemote"); extra_options->get_popup()->add_child(extra_options_remove_remote_list); - extra_options->get_popup()->add_submenu_item(TTR("Remove Remote"), "Remove Remote"); + extra_options->get_popup()->add_submenu_item(TTR("Remove Remote"), "RemoveRemote"); change_type_to_strings[EditorVCSInterface::CHANGE_TYPE_NEW] = TTR("New"); change_type_to_strings[EditorVCSInterface::CHANGE_TYPE_MODIFIED] = TTR("Modified"); |