Settings - Display: Allow immediate brightness change for internal monitors.

This commit is contained in:
ItsLemmy
2025-10-07 21:29:47 -04:00
parent f9630aae7b
commit 8f32b10025
+5
View File
@@ -167,6 +167,11 @@ ColumnLayout {
to: 1
value: brightnessMonitor ? brightnessMonitor.brightness : 0.5
stepSize: 0.01
onMoved: (value) => {
if (brightnessMonitor.method === "internal") {
brightnessMonitor.setBrightness(value)
}
}
onPressedChanged: (pressed, value) => brightnessMonitor.setBrightness(value)
Layout.fillWidth: true
}