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:
parent
b376e2c703
commit
ba963ac404
3 changed files with 13 additions and 24 deletions
src/slic3r/GUI
|
@ -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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue