mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-31 13:41:59 +08:00
Allow spiral_vase with multiple copies/objects when Sequential Printing is enabled
This commit is contained in:
parent
b571f4af84
commit
c773d407fd
@ -660,7 +660,7 @@ Print::validate() const
|
||||
if (this->config.spiral_vase) {
|
||||
size_t total_copies_count = 0;
|
||||
FOREACH_OBJECT(this, i_object) total_copies_count += (*i_object)->copies().size();
|
||||
if (total_copies_count > 1)
|
||||
if (total_copies_count > 1 && !this->config.complete_objects)
|
||||
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…
x
Reference in New Issue
Block a user