aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/anchorChangesCrash.qml
blob: 9af0e4645a8d943a29bb13726de96fe03743edc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    id: container
    width: 400
    height: 400

    states: State {
        name: "reanchored"
        AnchorChanges {
            anchors.top: container.top
        }
    }
}