Save a position and size of the settings dialog

+ Added a check of the printer technology inside can_merge_to_multipart_object() => suppress merge for the SLA printing
+ clear MainFrame.cpp from unused commented code
This commit is contained in:
YuSanka 2020-05-28 14:04:15 +02:00
parent b376e2c703
commit ba963ac404
3 changed files with 13 additions and 24 deletions
src/slic3r/GUI

View file

@ -2696,6 +2696,9 @@ bool ObjectList::can_split_instances()
bool ObjectList::can_merge_to_multipart_object() const
{
if (printer_technology() == ptSLA)
return false;
wxDataViewItemArray sels;
GetSelections(sels);
if (sels.IsEmpty())