mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
FindAllQualitiesForMachineMaterial only looks with basic materials if it found them
CURA-3911
This commit is contained in:
parent
a306b4dada
commit
9a54ff426b
2 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,8 @@ class QualityManager:
|
|||
result = self._getFilteredContainersForStack(machine_definition, [material_container], **criteria)
|
||||
if not result:
|
||||
basic_materials = self._getBasicMaterials(material_container)
|
||||
result = self._getFilteredContainersForStack(machine_definition, basic_materials, **criteria)
|
||||
if basic_materials:
|
||||
result = self._getFilteredContainersForStack(machine_definition, basic_materials, **criteria)
|
||||
|
||||
return result
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue