diff options
Diffstat (limited to 'modules/osd/Content.qml')
| -rw-r--r-- | modules/osd/Content.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/osd/Content.qml b/modules/osd/Content.qml index 622f2d7..770fb69 100644 --- a/modules/osd/Content.qml +++ b/modules/osd/Content.qml @@ -90,9 +90,9 @@ Item { if (!monitor) return; if (event.angleDelta.y > 0) - monitor.setBrightness(monitor.brightness + 0.1); + monitor.setBrightness(monitor.brightness + Config.services.brightnessIncrement); else if (event.angleDelta.y < 0) - monitor.setBrightness(monitor.brightness - 0.1); + monitor.setBrightness(monitor.brightness - Config.services.brightnessIncrement); } FilledSlider { |