Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2022-06-14 16:10:26 +0300
committerGhostkeeper <rubend@tutanota.com>2022-06-14 16:36:29 +0300
commit074e9a86077698114538b5e34774c699592d8788 (patch)
treef903fdc5a2b30029679aba56eb9bfae944bd272e /cura
parent28c1291febebbb6f93f9eca00067cca89c96d084 (diff)
Show profile group name in bold
That highlights it relative to the layer height. Contributes to issue CURA-8849.
Diffstat (limited to 'cura')
-rw-r--r--cura/Machines/Models/ActiveIntentQualitiesModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py
index dc546bc5d4..dc3bf41831 100644
--- a/cura/Machines/Models/ActiveIntentQualitiesModel.py
+++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py
@@ -113,7 +113,7 @@ class ActiveIntentQualitiesModel(ListModel):
if intent_node.intent_category != self._intent_category:
continue
extruder_intents.append({"name": quality_group.name,
- "display_text": f"{quality_group.name} - {layer_height}mm",
+ "display_text": f"<b>{quality_group.name}</b> - {layer_height}mm",
"quality_type": quality_group.quality_type,
"layer_height": layer_height,
"intent_category": self._intent_category