mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-18 05:45:40 -07:00
Derive jobname from material name instead of material type
This commit is contained in:
parent
e0ba8e7d00
commit
16df091ef8
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class PrintInformationPatches():
|
|||
|
||||
gantry_angle = global_container_stack.getProperty("blackbelt_gantry_angle", "value")
|
||||
nozzle_size = str(global_container_stack.getProperty("machine_nozzle_size", "value")).replace(".", "")
|
||||
material_type = extruder_stack.material.getMetaDataEntry("material")
|
||||
material_type = extruder_stack.material.getName().split()[0]
|
||||
self._print_information._abbr_machine = "%s_%s_%s" % (gantry_angle, nozzle_size, material_type)
|
||||
return
|
||||
### END PATCH
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue