aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations/data/doubleRegistrationBug.qml
blob: 9ef3da20c089435d7ed463dc2b6fa1122c6a70ac (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

Rectangle {
    width: 400; height: 400

    Double { id: dub; on: parent.width < 800 }
    Component.onCompleted: dub.on = false
}