Brightness: always debounce, DDCUtil is painfully slow
This commit is contained in:
parent
629b4c5fd7
commit
c991ac85b4
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue