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

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

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