aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/restoreObserverAfterReset.qml
blob: f6edb07705ce02f6ba192c0d0c362c1a2ebacddf (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: 100
        }
    }

    onHeightChanged: ++steps

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