From 45b51bd40e0389758b60a981294d6ff58d4e857b Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Fri, 23 Nov 2018 09:56:49 +0100 Subject: [PATCH] remove + shortcut from 'optimize rotation' menuitem --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index bfaddd405b..61179ae61a 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2171,7 +2171,7 @@ bool Plater::priv::init_object_menu() wxMenuItem* item_split = append_submenu(&object_menu, split_menu, wxID_ANY, _(L("Split")), _(L("Split the selected object")), "shape_ungroup.png"); // Add the automatic rotation sub-menu - item_sla_autorot = append_menu_item(&object_menu, wxID_ANY, _(L("Optimize orientation\t+")), _(L("Optimize the rotation of the object for better print results.")), + item_sla_autorot = append_menu_item(&object_menu, wxID_ANY, _(L("Optimize orientation")), _(L("Optimize the rotation of the object for better print results.")), [this](wxCommandEvent&) { sla_optimize_rotation(); }); if(printer_technology == ptFFF) item_sla_autorot = object_menu.Remove(item_sla_autorot);