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:
authorJaime van Kessel <nallath@gmail.com>2016-03-09 12:11:42 +0300
committerJaime van Kessel <nallath@gmail.com>2016-03-09 12:11:42 +0300
commit733215ef3ea71344f9099e48c3e0242ffded00c7 (patch)
treec5625233a99eb8230773f2d7a205bd359d502e1f /cura/PlatformPhysics.py
parent3df0b4de66dd60a68e9d2ac65c4a26d26f07127e (diff)
Selection is no longer ignored by push free
Fixes CURA-1086
Diffstat (limited to 'cura/PlatformPhysics.py')
-rw-r--r--cura/PlatformPhysics.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py
index df841bd71d..95951f78dd 100644
--- a/cura/PlatformPhysics.py
+++ b/cura/PlatformPhysics.py
@@ -92,9 +92,7 @@ class PlatformPhysics:
job = ConvexHullJob.ConvexHullJob(node)
job.start()
node.callDecoration("setConvexHullJob", job)
-
- elif Selection.isSelected(node):
- pass
+
elif Preferences.getInstance().getValue("physics/automatic_push_free"):
# Check for collisions between convex hulls
for other_node in BreadthFirstIterator(root):