Skip to content

Commit

Permalink
Merge pull request #19761 from Ultimaker/CURA-12112_fix_capital_case_ids
Browse files Browse the repository at this point in the history
[CURA-12112] Quality groups names are case-sensitive, so don't lower-case search.
  • Loading branch information
HellAholic authored Oct 18, 2024
2 parents 1e60a15 + 44cfdb9 commit 3c6326c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion plugins/3MFReader/ThreeMFWorkspaceReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,6 @@ def _updateActiveMachine(self, global_stack):
return
machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True)
else:
self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None
quality_group_dict = container_tree.getCurrentQualityGroups()
if self._quality_type_to_apply in quality_group_dict:
quality_group = quality_group_dict[self._quality_type_to_apply]
Expand Down

0 comments on commit 3c6326c

Please sign in to comment.