aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/Accelerator.qml
blob: a2b5146c3fcfe644b3f2f1e92737a9a79f5206bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.3

Rectangle {
    property alias value: range.width
    color: "yellow"
    Text {
        text: 'value: ' + value
    }

    Rectangle {
        id: range
        objectName: "range"
        color: "red"
        width: 0
        height: 5
        anchors.bottom: parent.bottom
    }
}