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

ProgressBar {
    value: 0.5
    Rectangle {
        parent: indicator
        width: indicator.childrenRect.width
        height: indicator.height
        color: "transparent"
        border.color: "red"
    }
}