summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2023-04-25 05:21:00 +0300
committerMaxim Devaev <[email protected]>2023-04-25 05:21:00 +0300
commite021d332fd09bd2951431da4cb4be4e36bb10a40 (patch)
tree7eaae8417255049152a5993ebfa4d16606014259
parentb8b0ad2874baa7f5e12a211886bf77d1cc5e8a0e (diff)
reduced max scroll rate
-rw-r--r--web/share/js/kvm/mouse.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/kvm/mouse.js b/web/share/js/kvm/mouse.js
index 6a72f5b9..d0600309 100644
--- a/web/share/js/kvm/mouse.js
+++ b/web/share/js/kvm/mouse.js
@@ -74,7 +74,7 @@ export function Mouse(__getGeometry, __recordWsEvent) {
tools.storage.bindSimpleSwitch($("hid-mouse-reverse-scrolling-switch"), "hid.mouse.reverse_scrolling", false);
let cumulative_scrolling = !(tools.browser.is_firefox && !tools.browser.is_mac);
tools.storage.bindSimpleSwitch($("hid-mouse-cumulative-scrolling-switch"), "hid.mouse.cumulative_scrolling", cumulative_scrolling);
- tools.slider.setParams($("hid-mouse-scroll-slider"), 1, 100, 1, tools.storage.get("hid.mouse.scroll_rate", 5), __updateScrollRate);
+ tools.slider.setParams($("hid-mouse-scroll-slider"), 1, 25, 1, tools.storage.get("hid.mouse.scroll_rate", 5), __updateScrollRate);
};
/************************************************************************/