This commit is contained in:
ItsLemmy
2025-10-07 21:44:39 -04:00
parent ee08a127ce
commit 217511ce2a
3 changed files with 40 additions and 40 deletions
+5 -5
View File
@@ -167,11 +167,11 @@ ColumnLayout {
to: 1
value: brightnessMonitor ? brightnessMonitor.brightness : 0.5
stepSize: 0.01
onMoved: (value) => {
if (brightnessMonitor.method === "internal") {
brightnessMonitor.setBrightness(value)
}
}
onMoved: value => {
if (brightnessMonitor.method === "internal") {
brightnessMonitor.setBrightness(value)
}
}
onPressedChanged: (pressed, value) => brightnessMonitor.setBrightness(value)
Layout.fillWidth: true
}