summaryrefslogtreecommitdiffstats
path: root/examples/declarative/scrollbar/ScrollBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/scrollbar/ScrollBar.qml')
-rw-r--r--examples/declarative/scrollbar/ScrollBar.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/scrollbar/ScrollBar.qml b/examples/declarative/scrollbar/ScrollBar.qml
index 84dbfd9..c1c4a4f 100644
--- a/examples/declarative/scrollbar/ScrollBar.qml
+++ b/examples/declarative/scrollbar/ScrollBar.qml
@@ -12,14 +12,14 @@ Item {
property var orientation : "Vertical"
// A light, semi-transparent background
- Rect {
+ Rectangle {
id: Background
radius: orientation == 'Vertical' ? (width/2 - 1) : (height/2 - 1)
color: "white"; opacity: 0.3
anchors.fill: parent
}
// Size the bar to the required size, depending upon the orientation.
- Rect {
+ Rectangle {
opacity: 0.7
color: "black"
radius: orientation == 'Vertical' ? (width/2 - 1) : (height/2 - 1)