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