FIX:Change the menu options from Reduce Triangles to Simplify Model

Change-Id: I68d44b8c055456ae237925896573316c2a24b264
This commit is contained in:
tao wang 2022-09-23 10:23:41 +08:00 committed by Lane.Wei
parent b8413d3a6c
commit 1b4486cc5d
1 changed files with 1 additions and 1 deletions

View File

@ -1279,7 +1279,7 @@ void MenuFactory::append_menu_item_clone(wxMenu* menu)
void MenuFactory::append_menu_item_simplify(wxMenu* menu)
{
wxMenuItem* menu_item = append_menu_item(menu, wxID_ANY, _L("Reduce Triangles"), "",
wxMenuItem* menu_item = append_menu_item(menu, wxID_ANY, _L("Simplify Model"), "",
[](wxCommandEvent&) { obj_list()->simplify(); }, "", menu,
[]() {return plater()->can_simplify(); }, m_parent);
}