aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/reset.qml
blob: a140ffab4d529857197fbaed6626cdb48bea3219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 1.0

Rectangle {
    width: 640
    height: 480
    Image {
        id: image
        width: 40
        source: "image.png"
    }

    states: State {
        name: "state1"
        PropertyChanges {
            target: image
            width: undefined
        }
    }
}