mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-07 12:25:15 +00:00
Brightness: always debounce, DDCUtil is painfully slow
This commit is contained in:
@@ -146,11 +146,11 @@ Singleton {
|
||||
}
|
||||
|
||||
function increaseBrightness(): void {
|
||||
setBrightness(brightness + 0.1)
|
||||
setBrightnessDebounced(brightness + 0.1)
|
||||
}
|
||||
|
||||
function decreaseBrightness(): void {
|
||||
setBrightness(monitor.brightness - 0.1)
|
||||
setBrightnessDebounced(monitor.brightness - 0.1)
|
||||
}
|
||||
|
||||
function getStoredBrightness(): real {
|
||||
|
||||
Reference in New Issue
Block a user