Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.7.0, 5.10.1
-
8fd398c9d2f5f54e446e0b402bc63a2edb50da6f
Description
Flickable { width: 300 height: 500 contentHeight: col.height Column { id: col PathView { clip: true width: 300 height: 300 model: 50 pathItemCount: 4 path: Path { startX: 150 startY: -50 PathLine { x: 150 y: 350 } } delegate: Rectangle { width: 300 height: 100 color: "transparent" border.width: 4 border.color: "green" Text { anchors.centerIn: parent font.pixelSize: 50 text: parent.PathView.view.dragging + ":" + parent.PathView.view.flicking } } } Rectangle { color: "yellow" width: 300 height: 600 } } }
1) Drag the PathView.
2) While the PathView is flicking, try again to drag the PathView
Expected result: The PathView will be dragging
Observed result: The Flickable will be dragging
Attachments
Issue Links
- relates to
-
QTBUG-78588 PathView does not work properly when you break flicking by mouse click
- Closed
- resulted in
-
QTBUG-77173 Incorrect behavior of PathView
- Closed