Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
5.12.4
-
None
-
-
Bug Fixing Week Q2/2020
Description
The problem is that if you try to use the Control somewhere in your delegate, it doesn't allow to scroll the ListView. This is related to touch screen only, mouse works well.
Here is the way to reproduce the issue:
ListView {
anchors.fill: parent
model: 100
delegate: Control { // Item works approriately, but Control doesn't
width: parent.width
height: 50
background: Rectangle {
color: Qt.rgba(13 * index % 100 / 100,
41 * index % 100 / 100,
71 * index % 100 / 100)
}
}
}
Attachments
Issue Links
- duplicates
-
QTBUG-63824 Flickable doesn't work with touch input and touch-only content item
- Closed
- relates to
-
QT3DS-3308 Support customer project X
- In Progress