From e7475772713fd1cdefee066d5fd06194f329cfad Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Wed, 11 Dec 2019 08:12:19 +0100 Subject: [PATCH] Added a validation check to reject wipe tower in sequential prints This scenario was never supported (#3283) --- src/libslic3r/Print.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index cca95ccf8..ae32bd2d3 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1252,6 +1252,8 @@ std::string Print::validate() const return L("Ooze prevention is currently not supported with the wipe tower enabled."); if (m_config.use_volumetric_e) return L("The Wipe Tower currently does not support volumetric E (use_volumetric_e=0)."); + if (m_config.complete_objects && extruders().size() > 1) + return L("The Wipe Tower is currently not supported for multimaterial sequential prints."); if (m_objects.size() > 1) { bool has_custom_layering = false;