mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
saving extruder settings on model
exported_model_settings were supposed to be None instead of {} for 3mf saving CURA-10542
This commit is contained in:
parent
1a0622acf2
commit
002af4eb81
1 changed files with 2 additions and 1 deletions
|
@ -272,7 +272,8 @@ class ThreeMFWriter(MeshWriter):
|
|||
transformation_matrix.preMultiply(translation_matrix)
|
||||
|
||||
root_node = UM.Application.Application.getInstance().getController().getScene().getRoot()
|
||||
exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model)
|
||||
exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model) if export_settings_model != None else None
|
||||
|
||||
for node in nodes:
|
||||
if node == root_node:
|
||||
for root_child in node.getChildren():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue