Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.2.1, 6.4.2, 6.5.0 Beta2
-
None
-
Android 6.0, 8.0 (go edition)
Description
The attached video is recorded with the display of touchs enabled.
While scrolling, the screen "jumps" when the touch point is near the point
where the scrolling started.
This bug also happens in ListView, TableView and TreeView.
This happens on Android using the touch interface. It doesn't happen
on linux using a mouse.
import QtQuick import QtQuick.Layouts Window { id: root width: 360 height: 480 visible: true Flickable { anchors.fill: parent contentHeight: repeater.implicitHeight ColumnLayout { id: repeater Repeater { model: 100 Rectangle { width: root.width height: 60 color: "green" Text { anchors.centerIn: parent text: model.index } } } } } }
Attachments
Issue Links
- duplicates
-
QTBUG-129599 ListView: ListView sometimes lags / pauses when dragging it
-
- Closed
-