We have had a report that scrolling is too sensitive in the HTML5 with a trackpad on Mac OS X. Scrolling with a normal mouse scrool-wheel also seems a bit too sensitive. Could perhaps be related to Mac having a different resolution on the trackpad which we aren't handling properly.
(In reply to comment #0) > Scrolling with a normal mouse scrool-wheel also seems a bit too sensitive. Disregard this, I have verified that this is not the case. The issue with a trackpad remains unverified though. A trackpad from Apple will be ordered.
I have reproduced the problem with the Apple Magic Trackpad using the HTML5 client running in Google Chrome and Safari on OSX 10.11. Scrolling with the trackpad is extremely sensitive, it feels like maybe 10 times as sensitive in the HTML5 client compared to locally. However, I can't reproduce the problem running the HTML5 client in Firefox on OSX 10.11.
Upstream report: https://github.com/kanaka/noVNC/issues/577
Also seems to happen on Chromebook
(In reply to comment #5) > Also seems to happen on Chromebook Using the built-in touchpad that is.
Scrolling using the trackpad is way to sensitive on my laptop when running Windows as well. No problem in Linux on my laptop however. This issue is not limited to Web Access. It stems from the nature of the RFB protocol where mouse wheel events are sent as clicks with a mouse up followed by a mouse down. The protocol does not have support for wheel delta or speed. Currently both client implementations (TigerVNC's vncviewer and noVNC) send one mouse wheel event to the server for each wheel event no matter how small the wheel delta is. Trackpads seem to have a tendency for sending a lot of small delta events (delta ~= 0.01-1) while a regular mouse sends fewer larger delta events (delta ~= 4-60). VNC usage is only suitable for the latter case really. One way to mitigate the problem with trackpads is to accumulate a number of small delta events in the client before sending an event to the server. A proposed patch that does just this for noVNC can be found here: https://github.com/novnc/noVNC/pull/896
Fixed in noVNC now. Will be resolved once we do a vendor drop.
This has now been implemented and works fine. Works for MacOS when using trackpad on: ✓ Safari 13 ✓ Chrome 77 ✓ Firefox 69 Works fine on Linux laptop on: ✓ Firefox 69 Works on Windows 10 on: ✓ Edge 18 ✓ Firefox 66 As for Chromebook, the scroll doesn't work on Firefox for Chromebook. See Bug 7405 for more information regarding this.
Verified that the problem existed on other platforms than just Windows 10 and macOS. Tested with apple magic trackpad on Fedora - Firefox 69. So this issue is with high precision trackpads seemingly unrelated to OS, but the upstream fix solves this.