From 81f13afb4edf1eff97e2538a8474a90b88586679 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 3 Mar 2016 10:24:42 +1300 Subject: [PATCH] Tweak look of combo box control --- .../resources/qml/controls-uit/ComboBox.qml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/interface/resources/qml/controls-uit/ComboBox.qml b/interface/resources/qml/controls-uit/ComboBox.qml index 3dcbd3c35a..bad1524719 100644 --- a/interface/resources/qml/controls-uit/ComboBox.qml +++ b/interface/resources/qml/controls-uit/ComboBox.qml @@ -79,10 +79,21 @@ FocusScope { Item { id: dropIcon anchors { right: parent.right; verticalCenter: parent.verticalCenter } - width: 20 - height: textField.height + height: background.height + width: height + Rectangle { + width: 1 + height: parent.height + anchors.top: parent.top + anchors.left: parent.left + color: isLightColorScheme ? hifi.colors.faintGray : hifi.colors.baseGray + } HiFiGlyphs { - anchors.centerIn: parent + anchors { + top: parent.top + topMargin: -8 + horizontalCenter: parent.horizontalCenter + } size: hifi.dimensions.spinnerSize text: hifi.glyphs.caratDn color: controlHover.containsMouse || popup.visible ? hifi.colors.baseGray : (isLightColorScheme ? hifi.colors.lightGray : hifi.colors.lightGrayText)