diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-25 09:13:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 09:13:14 +0100 |
commit | 819dad19f6db1e7685d0a012caefc9894356edaf (patch) | |
tree | 74dd2ac40fd8704ecdf9c2d33f05947c95d0afdf /editor/plugins/mesh_library_editor_plugin.cpp | |
parent | d250f12243a74fd36905f46b983e3c142e3b2e67 (diff) | |
parent | c0f2825f8b46c0d517cd5571d0571693774cc987 (diff) |
Merge pull request #59486 from fire-forge/meshlibrary-button
Remove space in MeshLibrary toolbar button
Diffstat (limited to 'editor/plugins/mesh_library_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/mesh_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_library_editor_plugin.cpp b/editor/plugins/mesh_library_editor_plugin.cpp index 41e3471a78..423ec5f4ed 100644 --- a/editor/plugins/mesh_library_editor_plugin.cpp +++ b/editor/plugins/mesh_library_editor_plugin.cpp @@ -271,7 +271,7 @@ MeshLibraryEditor::MeshLibraryEditor() { menu = memnew(MenuButton); Node3DEditor::get_singleton()->add_control_to_menu_panel(menu); 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->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM); menu->get_popup()->add_item(TTR("Remove Selected Item"), MENU_OPTION_REMOVE_ITEM); |