aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/restoreObserverAfterReset.qml
blob: 2933d9b4d5f616126154e9566acd925037bf8566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick

Item {
    height: undefined
    implicitHeight: 30
    property int steps: 0

    Behavior on height {
        NumberAnimation {
            duration: 500
        }
    }

    onHeightChanged: ++steps

    Component.onCompleted: {
        height = Qt.binding(() => implicitHeight);
        implicitHeight = 60;
    }
}