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

Rectangle {
    width: 400; height: 400

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