ScrollView far too sensitive for touchpad scrolling
Unsolved
QML and Qt Quick
-
I've got a ScrollView declared like so:
ScrollView { id: errorsScrollView Layout.fillHeight: true Layout.fillWidth: true clip: true contentWidth: parent.width contentHeight: errorsRepeaterColumn.height Column { id: errorsRepeaterColumn anchors.left: parent.left anchors.right: parent.right spacing: 5
Using Qt 5.15 on ChromeOS, scrolling it using the touchpad two-finger emote makes it fly up/down uncontrollably. How can I tone sensitivity down to something that is normal?
-
I'm following I have the same problem in Qt 6.2
-
There doesn't appear to be any control over velocity with ScrollView. Perhaps to have a look at Flickable which does offer control over velocity; https://doc.qt.io/qt-5/qml-qtquick-flickable.html
I could be wrong, but a good search for 'velocity' kept coming back to Flickable. I saw 'maximumFlickVelocity' for ListView mentioned in an Android thread, but it doesn't seem to apply to ListView in qml.