mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
No need to sort quality groups by type alphabetically
Like, it would put 'draft' first and 'verydraft' last. Just makes no sense. They have unique layer heights already. Contributes to issue CURA-6600.
This commit is contained in:
parent
9c47fc8e70
commit
603f18ebc9
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ class QualityProfilesDropDownMenuModel(ListModel):
|
|||
quality_group_dict = ContainerTree.getInstance().getCurrentQualityGroups()
|
||||
|
||||
item_list = []
|
||||
for key in sorted(quality_group_dict):
|
||||
for key in quality_group_dict:
|
||||
quality_group = quality_group_dict[key]
|
||||
|
||||
layer_height = self._fetchLayerHeight(quality_group)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue