FIX: add small disc stl

Change-Id: I5c6c8ca1d4a15fc1462fe47d2e5e37b459f9a9a6
This commit is contained in:
maosheng.wei 2023-08-15 10:51:59 +08:00 committed by Lane.Wei
parent 238a377155
commit f7495612fa
3 changed files with 3 additions and 1 deletions

View file

@ -484,7 +484,7 @@ wxMenu* MenuFactory::append_submenu_add_generic(wxMenu* menu, ModelVolumeType ty
sub_menu->AppendSeparator();
}
for (auto &item : {L("Cube"), L("Cylinder"), L("Sphere"), L("Cone")})
for (auto &item : {L("Cube"), L("Cylinder"), L("Sphere"), L("Cone"), L("Disc")})
{
append_menu_item(sub_menu, wxID_ANY, _(item), "",
[type, item](wxCommandEvent&) { obj_list()->load_generic_subobject(item, type); }, "", menu);