Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/libslic3r/Print.cpp')
-rw-r--r--xs/src/libslic3r/Print.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/src/libslic3r/Print.cpp b/xs/src/libslic3r/Print.cpp
index f1631b6d8..df825b05c 100644
--- a/xs/src/libslic3r/Print.cpp
+++ b/xs/src/libslic3r/Print.cpp
@@ -557,7 +557,7 @@ std::string Print::validate() const
return "The Spiral Vase option can only be used when printing single material objects.";
}
- if (this->config.wipe_tower && ! this->objects.empty()) {
+ if (this->has_wipe_tower() && ! this->objects.empty()) {
for (auto dmr : this->config.nozzle_diameter.values)
if (std::abs(dmr - 0.4) > EPSILON)
return "The Wipe Tower is currently only supported for the 0.4mm nozzle diameter.";
@@ -939,7 +939,7 @@ void Print::_make_brim()
}
// Wipe tower support.
-bool Print::has_wipe_tower()
+bool Print::has_wipe_tower() const
{
return
this->config.single_extruder_multi_material.value &&