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 }