aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-rangeslider-first-handle.qml
blob: a9a28d902bd1c61758216d7215fdaf86f5566e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import Qt.labs.controls 1.0

RangeSlider {
    first.value: 0.25
    second.value: 0.75
    Rectangle {
        anchors.fill: first.handle
        color: "transparent"
        border.color: "red"
    }
}