From 49cb12bda139a0dc791d580020914da8e7f23f72 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 15 Jul 2015 15:42:56 +0200 Subject: [PATCH] Revert "Forced hull calculation of parent should now always occur" This reverts commit c501d0a37c792b11a77cc48ac1d573d8aa7cffb5. --- cura/ConvexHullJob.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cura/ConvexHullJob.py b/cura/ConvexHullJob.py index 24d70925ed..c639528ec2 100644 --- a/cura/ConvexHullJob.py +++ b/cura/ConvexHullJob.py @@ -49,12 +49,8 @@ class ConvexHullJob(Job): self._node.callDecoration("setConvexHullNode", hull_node) self._node.callDecoration("setConvexHull", hull) self._node.callDecoration("setConvexHullJob", None) - if self._node.getParent().callDecoration("isGroup"): - if self._node.getParent().callDecoration("getConvexHull"): - job = self._node.getParent().callDecoration("getConvexJob") - if job: - job.cancel() - self._node.getParent().callDecoration("setConvexHull", None) #Force recalculation + #if self._node.getParent().callDecoration("isGroup"): + # if self._node.getParent().callDecoration("getConvexHull"): # self._node.getParent().callDecoration("getConvexHullNode").setParent(None) # self._node.getParent().callDecoration("setConvexHull", None)