Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. ScrollView far too sensitive for touchpad scrolling
Forum Updated to NodeBB v4.3 + New Features

ScrollView far too sensitive for touchpad scrolling

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
3 Posts 3 Posters 462 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    Vadi2
    wrote on last edited by
    #1

    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?

    1 Reply Last reply
    0
    • ? Offline
      ? Offline
      A Former User
      wrote on last edited by
      #2

      I'm following I have the same problem in Qt 6.2

      1 Reply Last reply
      0
      • MarkkyboyM Offline
        MarkkyboyM Offline
        Markkyboy
        wrote on last edited by
        #3

        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.

        Don't just sit there standing around, pick up a shovel and sweep up!

        I live by the sea, not in it.

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved