mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Fix reading per-object settings from 3MF object resources
This metadata has been changed to contain other information. Readers of information from 3MF need to adjust their stance too to filter out the information they need from the metadata of the metadata. Contributes to issue CURA-7615.
This commit is contained in:
parent
f442417ac6
commit
06086dfaaf
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class ThreeMFReader(MeshReader):
|
|||
setting_container = um_node.callDecoration("getStack").getTop()
|
||||
known_setting_keys = um_node.callDecoration("getStack").getAllKeys()
|
||||
for key in settings:
|
||||
setting_value = settings[key]
|
||||
setting_value = settings[key].value
|
||||
|
||||
# Extruder_nr is a special case.
|
||||
if key == "extruder_nr":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue