Merge remote-tracking branch 'origin/main' into CURA-12261-3dconnectionmouse

This commit is contained in:
Erwan MATHIEU 2025-02-06 12:57:24 +01:00
commit eb5c5a1ad9
58 changed files with 431 additions and 76 deletions

View file

@ -1679,7 +1679,7 @@ class MachineManager(QObject):
intent_category = self.activeIntentCategory,
intent_name = IntentCategoryModel.translation(self.activeIntentCategory, "name", self.activeIntentCategory.title()),
custom_profile = self.activeQualityOrQualityChangesName if global_stack.qualityChanges is not empty_quality_changes_container else None,
layer_height = self.activeQualityLayerHeight if self.isActiveQualitySupported else None,
layer_height = float("{:.2f}".format(self.activeQualityLayerHeight)) if self.isActiveQualitySupported else None,
is_experimental = self.isActiveQualityExperimental and self.isActiveQualitySupported
)