summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml
blob: 861ef8f22dcba7bc9ec7974edf2fe2b176d6ec6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7

Rectangle {
    id: container
    width: 400
    height: 400

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