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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-05-22 15:32:07 +0300
committerbubnikv <bubnikv@gmail.com>2018-05-22 15:32:07 +0300
commit306d77559eafb742e1b10e091e5adf980694f6fd (patch)
treede9140fc0be6e2128a0fda32f5826b4bbb376039 /xs/src/libslic3r/Print.cpp
parente8247c5646d512da4c8060ecd7d0a6a3232a6c28 (diff)
parent3291cbfdad7f1172016147befb3ec4c2b89d5ffb (diff)
Merge remote-tracking branch 'remotes/origin/scene_manipulators'
Diffstat (limited to 'xs/src/libslic3r/Print.cpp')
-rw-r--r--xs/src/libslic3r/Print.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Print.cpp b/xs/src/libslic3r/Print.cpp
index 24e523002..08802139d 100644
--- a/xs/src/libslic3r/Print.cpp
+++ b/xs/src/libslic3r/Print.cpp
@@ -522,7 +522,7 @@ std::string Print::validate() const
// Allow the objects to protrude below the print bed, only the part of the object above the print bed will be sliced.
print_volume.min.z = -1e10;
for (PrintObject *po : this->objects) {
- if (! print_volume.contains(po->model_object()->tight_bounding_box(false)))
+ if (!print_volume.contains(po->model_object()->tight_bounding_box(false)))
return "Some objects are outside of the print volume.";
}