From b0a7974c6af1e81876caf52602e5c9be7dde5077 Mon Sep 17 00:00:00 2001 From: Gabriel de Dietrich Date: Thu, 27 Sep 2012 18:24:11 +0200 Subject: [PATCH] Mac: Fix small glitch in editable combo boxes Change-Id: I4b064116183834226372b14c3c442dcaa518c3b4 Reviewed-by: Jens Bache-Wiig --- src/widgets/styles/qmacstyle_mac.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/styles/qmacstyle_mac.mm b/src/widgets/styles/qmacstyle_mac.mm index 235a3214cb..95f1635479 100644 --- a/src/widgets/styles/qmacstyle_mac.mm +++ b/src/widgets/styles/qmacstyle_mac.mm @@ -1436,7 +1436,7 @@ QRect QMacStylePrivate::comboboxEditBounds(const QRect &outerBounds, const HIThe QRect ret = outerBounds; switch (bdi.kind){ case kThemeComboBox: - ret.adjust(5, 8, -21, -4); + ret.adjust(5, 8, -23, -4); break; case kThemeComboBoxSmall: ret.adjust(4, 5, -18, 0);