Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-119907

[REG 5->6]: Mouse wheel scroll is too slow

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P3: Somewhat important
    • None
    • 6.6.0
    • None
    • Linux, Xorg, Manjaro KDE 5.27.9
    • Linux/X11

    Description

      When scrolling a list with the mouse wheel the movement increments are too small when launching with qml6 or qmlscene6. The qmlscene from Qt 5.15.11 scrolls correctly fast.

      Looks similar to https://bugreports.qt.io/browse/QTBUG-59261

      import QtQuick 2.15
      import QtQuick.Controls 2.15
      
      ApplicationWindow {
          visible: true
          width: 400
          height: 400
          title: "List"
      
          ListView {
              width: parent.width
              height: parent.height
      
              model: 50
      
              delegate: Item {
                  width: if (parent) parent.width
                  height: 50
      
                  Rectangle {
                      width: parent.width
                      height: 50
      
                      Text {
                          anchors.centerIn: parent
                          text: "Text"
                      }
                  }
              }
          }
      }
      

      Attachments

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              srutledg Shawn Rutledge
              Velkan Velkan S
              Votes:
              4 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:

                Gerrit Reviews

                  There are no open Gerrit changes