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:
authorRemco Burema <r.burema@ultimaker.com>2019-08-06 18:07:22 +0300
committerRemco Burema <r.burema@ultimaker.com>2019-08-06 18:07:22 +0300
commit3b1674200dcb7ba0029ce246db51789836b2a425 (patch)
tree2e52c06640a4f0bfa489643c9e30d26d9e117928 /cura/PlatformPhysics.py
parent0263a9a9f5cb0363729311efabc6c28265e81c44 (diff)
Drop down to buildplate after resize (fix).
CURA-6686
Diffstat (limited to 'cura/PlatformPhysics.py')
-rwxr-xr-xcura/PlatformPhysics.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py
index 46d73f4abf..d084c0dbf4 100755
--- a/cura/PlatformPhysics.py
+++ b/cura/PlatformPhysics.py
@@ -49,6 +49,8 @@ class PlatformPhysics:
return
root = self._controller.getScene().getRoot()
+ build_volume = Application.getInstance().getBuildVolume()
+ build_volume.updateNodeBoundaryCheck()
# Keep a list of nodes that are moving. We use this so that we don't move two intersecting objects in the
# same direction.
@@ -160,7 +162,6 @@ class PlatformPhysics:
op.push()
# After moving, we have to evaluate the boundary checks for nodes
- build_volume = Application.getInstance().getBuildVolume()
build_volume.updateNodeBoundaryCheck()
def _onToolOperationStarted(self, tool):