Export to STL of SLA supports and pad

This commit is contained in:
Enrico Turri 2019-05-02 13:46:39 +02:00
parent 4a5992ba6e
commit a3385278e5
5 changed files with 95 additions and 15 deletions
src/slic3r/GUI

View file

@ -1147,7 +1147,7 @@ void ObjectList::append_menu_item_fix_through_netfabb(wxMenu* menu)
void ObjectList::append_menu_item_export_stl(wxMenu* menu) const
{
append_menu_item(menu, wxID_ANY, _(L("Export as STL")) + dots, "",
[](wxCommandEvent&) { wxGetApp().plater()->export_stl(true); }, "", menu);
[](wxCommandEvent&) { wxGetApp().plater()->export_stl(false, true); }, "", menu);
menu->AppendSeparator();
}