From 79a5014a37f05586c1b25e386ffec7acdff4e218 Mon Sep 17 00:00:00 2001 From: Damocles Date: Sun, 12 Apr 2026 01:04:02 +0200 Subject: [PATCH] fix brightness icon --- modules/Backlight.qml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/Backlight.qml b/modules/Backlight.qml index a0ccc90..2529c47 100644 --- a/modules/Backlight.qml +++ b/modules/Backlight.qml @@ -42,11 +42,12 @@ M.BarSection { root.percent = Math.round((c / m) * 100); } - Text { - text: root.percent + "% " - color: M.Theme.base05 - font.pixelSize: M.Theme.fontSize - font.family: M.Theme.fontFamily + M.BarIcon { + icon: "\uF185" + anchors.verticalCenter: parent.verticalCenter + } + M.BarLabel { + label: root.percent + "%" anchors.verticalCenter: parent.verticalCenter }