aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-03-26 13:26:18 +0100
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-03-26 13:26:35 +0100
commitc21747a292537168b01e493fd1ebc6bfecce17c0 (patch)
tree63d828864be524097a9455c2871cdcdbe0bce12a /src/plugins/qmldesigner/components/stateseditor/stateslist.qml
parent1e29fa6d6d584884b848952265545804e4c3c48e (diff)
QmlDesigner: styling of scroll bar
Diffstat (limited to 'src/plugins/qmldesigner/components/stateseditor/stateslist.qml')
-rw-r--r--src/plugins/qmldesigner/components/stateseditor/stateslist.qml12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
index 441ecab71a..7563ba5192 100644
--- a/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
+++ b/src/plugins/qmldesigner/components/stateseditor/stateslist.qml
@@ -532,6 +532,8 @@ Rectangle {
anchors.right : listView.right
anchors.top : listView.bottom
anchors.topMargin: 1
+ anchors.leftMargin: 1
+ anchors.rightMargin: 1
height: 10;
@@ -547,9 +549,17 @@ Rectangle {
Rectangle {
- height:parent.height-1
+ height:parent.height-1
width:parent.width
y:1
+ color: "black"
+ }
+
+ Rectangle {
+ height:parent.height-3
+ width:parent.width - 2
+ y:2
+ x:1
gradient: Gradient {
GradientStop { position: 0.0; color: "#C6C6C6" }