blob: b2f30b84ec26dbb86a84d157435e701ccbab4644 [file] [log] [blame]
import QtQuick 2.0
Flickable {
property bool ok: false
function check() {
if (column.parent == contentItem)
ok = true;
}
width: 100; height: 100
contentWidth: column.width; contentHeight: column.height
pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
maximumFlickVelocity: 2000
Column {
id: column
Repeater {
model: 4
Rectangle { width: 200; height: 300; color: "blue" }
}
}
}