powerprofile switcher bold text

This commit is contained in:
Zacharias-Brohn
2026-02-12 21:55:29 +01:00
parent 7efe7f44bf
commit 6be4b382b7
+4
View File
@@ -32,6 +32,7 @@ Item {
implicitHeight: Math.max(saver.implicitHeight, balance.implicitHeight, perf.implicitHeight) + 5 * 2 + saverLabel.contentHeight implicitHeight: Math.max(saver.implicitHeight, balance.implicitHeight, perf.implicitHeight) + 5 * 2 + saverLabel.contentHeight
color: DynamicColors.tPalette.m3surfaceContainer color: DynamicColors.tPalette.m3surfaceContainer
// color: "transparent"
radius: 6 radius: 6
CustomRect { CustomRect {
@@ -91,6 +92,7 @@ Item {
id: saverLabel id: saverLabel
anchors.top: saver.bottom anchors.top: saver.bottom
anchors.horizontalCenter: saver.horizontalCenter anchors.horizontalCenter: saver.horizontalCenter
font.bold: true
text: saver.text text: saver.text
} }
@@ -110,6 +112,7 @@ Item {
id: balanceLabel id: balanceLabel
anchors.top: balance.bottom anchors.top: balance.bottom
anchors.horizontalCenter: balance.horizontalCenter anchors.horizontalCenter: balance.horizontalCenter
font.bold: true
text: balance.text text: balance.text
} }
@@ -130,6 +133,7 @@ Item {
id: perfLabel id: perfLabel
anchors.top: perf.bottom anchors.top: perf.bottom
anchors.horizontalCenter: perf.horizontalCenter anchors.horizontalCenter: perf.horizontalCenter
font.bold: true
text: perf.text text: perf.text
} }
} }