From 733215ef3ea71344f9099e48c3e0242ffded00c7 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 9 Mar 2016 10:11:42 +0100 Subject: [PATCH] Selection is no longer ignored by push free Fixes CURA-1086 --- cura/PlatformPhysics.py | 4 +--- 1 file changed, 1 insertion(+), 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):