From 6be4b382b7441e8c7b3ef08d28c6ead617502c36 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Thu, 12 Feb 2026 21:55:29 +0100 Subject: [PATCH] powerprofile switcher bold text --- Modules/UPower/UPowerPopout.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/UPower/UPowerPopout.qml b/Modules/UPower/UPowerPopout.qml index f92d68e..ea1aa92 100644 --- a/Modules/UPower/UPowerPopout.qml +++ b/Modules/UPower/UPowerPopout.qml @@ -32,6 +32,7 @@ Item { implicitHeight: Math.max(saver.implicitHeight, balance.implicitHeight, perf.implicitHeight) + 5 * 2 + saverLabel.contentHeight color: DynamicColors.tPalette.m3surfaceContainer + // color: "transparent" radius: 6 CustomRect { @@ -91,6 +92,7 @@ Item { id: saverLabel anchors.top: saver.bottom anchors.horizontalCenter: saver.horizontalCenter + font.bold: true text: saver.text } @@ -110,6 +112,7 @@ Item { id: balanceLabel anchors.top: balance.bottom anchors.horizontalCenter: balance.horizontalCenter + font.bold: true text: balance.text } @@ -130,6 +133,7 @@ Item { id: perfLabel anchors.top: perf.bottom anchors.horizontalCenter: perf.horizontalCenter + font.bold: true text: perf.text } }