From de02d331c7c1ea57880f89e1419ca63ee1856caa Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 16 Mar 2017 13:42:29 +0100 Subject: [PATCH] Selection tool operation stoped no longer triggers platform physics CURA-3465 --- cura/PlatformPhysics.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 0bd7009ac8..42ea26f153 100644 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -171,6 +171,10 @@ class PlatformPhysics: self._enabled = False def _onToolOperationStopped(self, tool): + # Selection tool should not trigger an update. + if tool.getPluginId() == "SelectionTool": + return + if tool.getPluginId() == "TranslateTool": for node in Selection.getAllSelectedObjects(): if node.getBoundingBox().bottom < 0: