From 78b052f66c2cdfa907f8ab1769f6ab8e8e73a817 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 28 Sep 2016 16:41:04 +0200 Subject: [PATCH] Only start change timer if there is a global stack --- cura/BuildVolume.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index a89dff4cd5..7b359c1901 100644 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -87,7 +87,8 @@ class BuildVolume(SceneNode): Application.getInstance().getMachineManager().activeQualityChanged.connect(self._onStackChanged) def _onSceneChanged(self, source): - self._change_timer.start() + if self._global_container_stack: + self._change_timer.start() def _onChangeTimerFinished(self): root = Application.getInstance().getController().getScene().getRoot()