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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2017-08-11 13:26:50 +0300
committerLipu Fei <lipu.fei815@gmail.com>2017-08-11 13:27:45 +0300
commit3e870d2e4071cb7de34a282909905760352439b9 (patch)
treebe3f2eb8fffb909fb6cbceeaef6a1327174abfd4 /cura/BuildVolume.py
parentb03847447fa697f0a45b8fe72644ea041d27b664 (diff)
Always update raft thickness and extra z clearance before rebuilding the build volume
CURA-4154
Diffstat (limited to 'cura/BuildVolume.py')
-rwxr-xr-xcura/BuildVolume.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py
index 70578d0e02..e37268e244 100755
--- a/cura/BuildVolume.py
+++ b/cura/BuildVolume.py
@@ -489,6 +489,7 @@ class BuildVolume(SceneNode):
self._updateDisallowedAreas()
self._updateRaftThickness()
+ self._updateExtraZClearance()
if self._engine_ready:
self.rebuild()
@@ -546,6 +547,8 @@ class BuildVolume(SceneNode):
# would hit performance.
def _updateDisallowedAreasAndRebuild(self):
self._updateDisallowedAreas()
+ self._updateRaftThickness()
+ self._updateExtraZClearance()
self.rebuild()
def _updateDisallowedAreas(self):