Convex hull is also redrawn when machineInstance is changed

CURA-742
This commit is contained in:
Jaime van Kessel 2016-02-01 16:03:31 +01:00
parent d68e17c9f5
commit 782c4508c6

View file

@ -17,6 +17,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
self._profile = None
Application.getInstance().getMachineManager().activeProfileChanged.connect(self._onActiveProfileChanged)
Application.getInstance().getMachineManager().activeMachineInstanceChanged.connect(self._onActiveMachineInstanceChanged)
self._onActiveProfileChanged()
## Force that a new (empty) object is created upon copy.
@ -67,6 +68,14 @@ class ConvexHullDecorator(SceneNodeDecorator):
if self._profile:
self._profile.settingValueChanged.connect(self._onSettingValueChanged)
def _onActiveMachineInstanceChanged(self):
if self._convex_hull_job:
self._convex_hull_job.cancel()
self.setConvexHull(None)
if self._convex_hull_node:
self._convex_hull_node.setParent(None)
self._convex_hull_node = None
def _onSettingValueChanged(self, setting):
if setting == "print_sequence":
if self._convex_hull_job: