mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Never fill None for quality changes profile
We want it to be the empty profile instead. This gets passed on all the way to _replaceQualityOrQualityChangesInStack where the metadata is requested. Contributes to issue CURA-3301.
This commit is contained in:
parent
a75387ff3e
commit
fe406f530c
1 changed files with 2 additions and 0 deletions
|
@ -929,6 +929,8 @@ class MachineManager(QObject):
|
|||
quality_changes = quality_changes_list[0]
|
||||
else:
|
||||
quality_changes = global_quality_changes
|
||||
if not quality_changes:
|
||||
quality_changes = self._empty_quality_changes_container
|
||||
|
||||
material = stack.material
|
||||
quality = quality_manager.findQualityByQualityType(quality_type, global_machine_definition, [material])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue