Browse Source

Remove space in MeshLibrary editor button

FireForge 3 years ago
parent
commit
c0f2825f8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/plugins/mesh_library_editor_plugin.cpp

+ 1 - 1
editor/plugins/mesh_library_editor_plugin.cpp

@@ -271,7 +271,7 @@ MeshLibraryEditor::MeshLibraryEditor() {
 	menu = memnew(MenuButton);
 	menu = memnew(MenuButton);
 	Node3DEditor::get_singleton()->add_control_to_menu_panel(menu);
 	Node3DEditor::get_singleton()->add_control_to_menu_panel(menu);
 	menu->set_position(Point2(1, 1));
 	menu->set_position(Point2(1, 1));
-	menu->set_text(TTR("Mesh Library"));
+	menu->set_text(TTR("MeshLibrary"));
 	menu->set_icon(EditorNode::get_singleton()->get_gui_base()->get_theme_icon(SNAME("MeshLibrary"), SNAME("EditorIcons")));
 	menu->set_icon(EditorNode::get_singleton()->get_gui_base()->get_theme_icon(SNAME("MeshLibrary"), SNAME("EditorIcons")));
 	menu->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM);
 	menu->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM);
 	menu->get_popup()->add_item(TTR("Remove Selected Item"), MENU_OPTION_REMOVE_ITEM);
 	menu->get_popup()->add_item(TTR("Remove Selected Item"), MENU_OPTION_REMOVE_ITEM);