Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.0.0
-
None
-
Ubuntu 10.10 xcb
Description
With the example below if the item at the top of the list is grabbed and dragged sufficiently past the bottom of the window a crash will occur.
import QtQuick 2.0 ListView { width: 240; height: 320 model: 20 delegate: Rectangle { width: 240; height: 40 color: "lightsteelblue" } section.property: "modelData" section.delegate: Rectangle { width: 240; height: 80 color: "yellow" } }