FIX: fill in bed menu item removes dots

Change-Id: I4f0a0571965a6cd57108c35ad6cc06c8f06f6316
(cherry picked from commit 7999377b90eb8dd243102f2fb9e94cd1017e9bb3)
This commit is contained in:
manch1n 2023-05-19 17:15:17 +08:00 committed by Lane.Wei
parent 00b5a1db3a
commit d76edece9f

View file

@ -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)