From d76edece9fb32c524e56b4c657dedee3c5ac4697 Mon Sep 17 00:00:00 2001 From: manch1n Date: Fri, 19 May 2023 17:15:17 +0800 Subject: [PATCH] FIX: fill in bed menu item removes dots Change-Id: I4f0a0571965a6cd57108c35ad6cc06c8f06f6316 (cherry picked from commit 7999377b90eb8dd243102f2fb9e94cd1017e9bb3) --- src/slic3r/GUI/GUI_Factories.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp index ac3ce090c..bfaf0977b 100644 --- a/src/slic3r/GUI/GUI_Factories.cpp +++ b/src/slic3r/GUI/GUI_Factories.cpp @@ -1624,7 +1624,7 @@ void MenuFactory::append_menu_item_locked(wxMenu* menu) void MenuFactory::append_menu_item_fill_bed(wxMenu *menu) { append_menu_item( - menu, wxID_ANY, _L("Fill bed with copies") + dots, _L("Fill the remaining area of bed with copies of the selected object"), + menu, wxID_ANY, _L("Fill bed with copies"), _L("Fill the remaining area of bed with copies of the selected object"), [](wxCommandEvent &) { plater()->fill_bed_with_instances(); }, "", nullptr, []() { return plater()->can_increase_instances(); }, m_parent); } void MenuFactory::append_menu_item_plate_name(wxMenu *menu)