summaryrefslogtreecommitdiff
path: root/modules/osd/Content.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/osd/Content.qml')
-rw-r--r--modules/osd/Content.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/osd/Content.qml b/modules/osd/Content.qml
index b224bf6..54976e4 100644
--- a/modules/osd/Content.qml
+++ b/modules/osd/Content.qml
@@ -34,7 +34,7 @@ Column {
}
VerticalSlider {
- icon: "brightness_6"
+ icon: `brightness_${(Math.round(value * 6) + 1)}`
value: root.monitor?.brightness ?? 0
onMoved: root.monitor?.setBrightness(value)