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

Rectangle {
    id: container
    width: 400
    height: 400

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