mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 01:07:52 -06:00
Do not show not supported in profile manager
CURA-4796
This commit is contained in:
parent
4abbd4b988
commit
1d104f367d
1 changed files with 3 additions and 1 deletions
|
@ -42,5 +42,7 @@ class QualityAndUserProfilesModel(ProfilesModel):
|
|||
qc.getMetaDataEntry("extruder") == active_extruder.definition.getId())}
|
||||
|
||||
result = filtered_quality_changes
|
||||
result.update({q.getId():q for q in quality_list})
|
||||
for q in quality_list:
|
||||
if q.getId() != "empty_quality":
|
||||
result[q.getId()] = q
|
||||
return result, {} #Only return true profiles for now, no metadata. The quality manager is not able to get only metadata yet.
|
Loading…
Add table
Add a link
Reference in a new issue