diff options
author | Haz <hazman.games@gmail.com> | 2021-02-25 19:06:32 -0500 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-11 21:40:50 +0100 |
commit | 189acbee60f3d3149577db5446d9115352f60216 (patch) | |
tree | 0be0aab3e81a08bf53a1aea26a53830824564702 /editor/plugins/mesh_library_editor_plugin.cpp | |
parent | 44b41ded82229ca7614403f74234a4282002458b (diff) | |
download | redot-engine-189acbee60f3d3149577db5446d9115352f60216.tar.gz |
Fix mesh library remove selected item menu option
Fixes #45969.
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 2981862291..ec2421573f 100644 --- a/editor/plugins/mesh_library_editor_plugin.cpp +++ b/editor/plugins/mesh_library_editor_plugin.cpp @@ -232,7 +232,7 @@ void MeshLibraryEditor::_menu_cbk(int p_option) { } break; case MENU_OPTION_REMOVE_ITEM: { String p = InspectorDock::get_inspector_singleton()->get_selected_path(); - if (p.begins_with("/MeshLibrary/item") && p.get_slice_count("/") >= 3) { + if (p.begins_with("/MeshLibrary/item") && p.get_slice_count("/") >= 2) { to_erase = p.get_slice("/", 3).to_int(); cd_remove->set_text(vformat(TTR("Remove item %d?"), to_erase)); cd_remove->popup_centered(Size2(300, 60)); |