mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 17:58:03 -06:00
Fix of https://github.com/alexrj/Slic3r/issues/4043 , thanks to @lordofhyphens.
Further refactoring of the cooling logic to collect per extruder data.
This commit is contained in:
parent
39b9341359
commit
32fa84c5a5
9 changed files with 123 additions and 132 deletions
|
@ -550,7 +550,8 @@ std::string Print::validate() const
|
|||
size_t total_copies_count = 0;
|
||||
for (const PrintObject *object : this->objects)
|
||||
total_copies_count += object->copies().size();
|
||||
if (total_copies_count > 1)
|
||||
// #4043
|
||||
if (total_copies_count > 1 && ! this->config.complete_objects.value)
|
||||
return "The Spiral Vase option can only be used when printing a single object.";
|
||||
if (this->regions.size() > 1)
|
||||
return "The Spiral Vase option can only be used when printing single material objects.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue