aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/imagine/ComboBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/imagine/ComboBox.qml')
-rw-r--r--src/imports/controls/imagine/ComboBox.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/controls/imagine/ComboBox.qml b/src/imports/controls/imagine/ComboBox.qml
index 0068f6df..a75993fd 100644
--- a/src/imports/controls/imagine/ComboBox.qml
+++ b/src/imports/controls/imagine/ComboBox.qml
@@ -44,9 +44,9 @@ import QtQuick.Controls.Imagine.impl 2.5
T.ComboBox {
id: control
- implicitWidth: Math.max(implicitBackgroundWidth,
+ implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
contentItem.implicitWidth + background ? (background.leftPadding + background.rightPadding) : 0)
- implicitHeight: Math.max(implicitBackgroundHeight,
+ implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
Math.max(implicitContentHeight,
implicitIndicatorHeight) + background ? (background.topPadding + background.bottomPadding) : 0)