QML ListView scrolling with a TrackPad
Unsolved
QML and Qt Quick
-
I am using a ListView in my application. Testing the project on a Dell XPS 13, I have noticed that scrolling with the touchpad is too fast, the two-fingers scrolling is just too fast which makes it impossible to scroll by a small amount. How can I fix this?
-
@daljit97 Two things you can try:
- Control the trackpad's scroll speed from OS's setting if possible
- Changing maximumFlickVelocity in
ListView
-
Please report a bug.
-
-
I found a solution for similar problem
looks like the step happens because of 'interactive' in ListView
So, do:interactive: false
and use a custom scroll with MouseArea
using onWheel