Browse Source

Make sure to send all settings when an object overrides the profile

Contributes to CURA-255
Arjen Hiemstra 9 years ago
parent
commit
f75b6bb046
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/CuraEngineBackend/StartSliceJob.py

+ 1 - 1
plugins/CuraEngineBackend/StartSliceJob.py

@@ -107,7 +107,7 @@ class StartSliceJob(Job):
     def _handlePerObjectSettings(self, node, message):
         profile = node.callDecoration("getProfile")
         if profile:
-            for key, value in profile.getChangedSettingValues().items():
+            for key, value in profile.getAllSettingValues().items():
                 setting = message.settings.add()
                 setting.name = key
                 setting.value = str(value).encode()