From fb7098e542f12864821585b2e248ba1cf5123d26 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 9 Dec 2020 15:40:21 +0100 Subject: [PATCH] Sequential Mode: Improved error message to explain that the spiral mode may be enabled for multiple objects in sequential mode. Fixes Allow for multiple objects while Spiral Vase mode is on #2500 --- src/libslic3r/Print.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 1b901341d..64fe751a3 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1266,7 +1266,8 @@ std::string Print::validate() const total_copies_count += object->instances().size(); // #4043 if (total_copies_count > 1 && ! m_config.complete_objects.value) - return L("The Spiral Vase option can only be used when printing a single object."); + return L("Only a single object may be printed at a time in Spiral Vase mode. " + "Either remove all but the last object, or enable sequential mode by \"complete_objects\"."); assert(m_objects.size() == 1); size_t num_regions = 0; for (const std::vector> &volumes_per_region : m_objects.front()->region_volumes)