fix brightness icon

This commit is contained in:
Damocles 2026-04-12 01:04:02 +02:00
parent 186c9a3aa2
commit 79a5014a37

View file

@ -42,11 +42,12 @@ M.BarSection {
root.percent = Math.round((c / m) * 100); root.percent = Math.round((c / m) * 100);
} }
Text { M.BarIcon {
text: root.percent + "% " icon: "\uF185"
color: M.Theme.base05 anchors.verticalCenter: parent.verticalCenter
font.pixelSize: M.Theme.fontSize }
font.family: M.Theme.fontFamily M.BarLabel {
label: root.percent + "%"
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
} }