From 174990ba9d5c0c4a808590f4d80e208dbba0884a Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 22 Nov 2016 13:13:30 +0100 Subject: [PATCH] Set the depends_on property for resolve to value CURA-2900 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index b89df31dd9..db17b50793 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -130,7 +130,7 @@ class CuraApplication(QtApplication): # For settings which are not settable_per_mesh and not settable_per_extruder: # A function which determines the glabel/meshgroup value by looking at the values of the setting in all (used) extruders - SettingDefinition.addSupportedProperty("resolve", DefinitionPropertyType.Function, default = None) + SettingDefinition.addSupportedProperty("resolve", DefinitionPropertyType.Function, default = None, depends_on = "value") SettingDefinition.addSettingType("extruder", None, str, Validator)