Browse Source

Fix the hacked "getResolveOrValue" to return value always instead of resolve

Arjen Hiemstra 8 years ago
parent
commit
1c75a82779
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/Settings/ExtruderManager.py

+ 1 - 1
cura/Settings/ExtruderManager.py

@@ -512,7 +512,7 @@ class ExtruderManager(QObject):
     def getResolveOrValue(key):
         global_stack = Application.getInstance().getGlobalContainerStack()
 
-        resolved_value = global_stack.getProperty(key, "resolve")
+        resolved_value = global_stack.getProperty(key, "value")
         #if resolved_value is not None:
             #user_container = global_stack.findContainer({"type": "user"})
             #quality_changes_container = global_stack.findContainer({"type": "quality_changes"})