QmlDesigner.PropertyEditor: some adjustment to ComboBox style

Change-Id: I52a80941e343ad9ad3cca7bc0bcdec8fe0a90156
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Thomas Hartmann
2013-10-24 14:11:58 +02:00
parent f52039640b
commit e7418a9c95

View File

@@ -67,12 +67,24 @@ ComboBoxStyle {
opacity: 0.3
visible: control.activeFocus
}
Rectangle {
color: "#333"
width: 1
anchors.right: imageItem.left
anchors.topMargin: 4
anchors.bottomMargin: 4
anchors.rightMargin: 6
anchors.top: parent.top
anchors.bottom: parent.bottom
}
Image {
id: imageItem
source: "images/down-arrow.png"
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
anchors.rightMargin: 8
anchors.rightMargin: 10
opacity: control.enabled ? 0.7 : 0.5
}
}