Allow spiral_vase with multiple copies/objects when Sequential Printing is enabled

This commit is contained in:
Alessandro Ranellucci 2017-03-18 16:11:31 +01:00
parent b571f4af84
commit c773d407fd

View File

@ -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.";