Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.12.2, 5.14.0 Beta2
Description
import QtQuick 2.12 Item { id: root width: 640 height: 480 ListView { focus: true anchors.fill: parent model: 10 header: Rectangle { width: 640 height: 50 color: "green" z: 11 opacity: 0.5 } headerPositioning: ListView.OverlayHeader spacing: 50 snapMode: ListView.SnapToItem preferredHighlightBegin: 0.1 preferredHighlightEnd: 0.1 highlightRangeMode: ListView.ApplyRange delegate: Rectangle { width: 640 height: 100 color: ListView.isCurrentItem ? "red" : "blue" } } }
This ListView configuration causes the application to hang.
Attachments
Issue Links
- relates to
-
QTBUG-76362 ListView.snapMode doesn't work correctly with header item.
- Closed