mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Make sure to send all settings when an object overrides the profile
Contributes to CURA-255
This commit is contained in:
parent
3029409b89
commit
f75b6bb046
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue