mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Only start change timer if there is a global stack
This commit is contained in:
parent
dc6e4f172e
commit
78b052f66c
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue