From ea93490c45249c8c29f3f0916326e4e8b35f5ae2 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 1 Jul 2019 14:55:46 +0200 Subject: [PATCH] Fix crash when loading multi-extrusion print Because getProperty needs a property to get. --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 3358fe8b85..559cb72e3d 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -791,7 +791,7 @@ class BuildVolume(SceneNode): result[extruder.getId()] = [] # Currently, the only normally printed object is the prime tower. - if self._global_container_stack.getProperty("prime_tower_enable"): + if self._global_container_stack.getProperty("prime_tower_enable", "value"): prime_tower_size = self._global_container_stack.getProperty("prime_tower_size", "value") machine_width = self._global_container_stack.getProperty("machine_width", "value") machine_depth = self._global_container_stack.getProperty("machine_depth", "value")