diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml
index 185ac8b7ce7f887357f7d553c49dc15c3e6718b5..29f03abdcb5310f3b2656794dddfc5c549cfde97 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml
@@ -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
         }
     }