summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlstates/data/restoreEntryValues.qml
blob: 088c6081c62b1606fa446ff47e44d1b0292f28a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges {
            target: myRectangle
            restoreEntryValues: false
            color: "blue"
        }
    }
}