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>2017-06-15 21:15:53 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-15 21:15:53 +0300
commitcb43f19a90c05b5b8830b5594bc8e2f933d48dfc (patch)
tree19cc49ed200fcd52245405ac22af84c3e053e158 /xs/src/libslic3r/PrintObject.cpp
parentaa54c3402b300f3e192189c8d5d8f82e4ada15b5 (diff)
Fixed a variable layer height profile update issue.version_1.35.5
https://github.com/prusa3d/Slic3r/issues/358
Diffstat (limited to 'xs/src/libslic3r/PrintObject.cpp')
-rw-r--r--xs/src/libslic3r/PrintObject.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/PrintObject.cpp b/xs/src/libslic3r/PrintObject.cpp
index 30da8b4ae..588e46ef6 100644
--- a/xs/src/libslic3r/PrintObject.cpp
+++ b/xs/src/libslic3r/PrintObject.cpp
@@ -1468,6 +1468,7 @@ void PrintObject::reset_layer_height_profile()
{
// Reset the layer_heigth_profile.
this->layer_height_profile.clear();
+ this->layer_height_profile_valid = false;
// Reset the source layer_height_profile if it exists at the ModelObject.
this->model_object()->layer_height_profile.clear();
this->model_object()->layer_height_profile_valid = false;