Fix height of combobox in macstyle without a widget
authorJens Bache-Wiig <jens.bache-wiig@digia.com>
Fri, 2 Nov 2012 13:27:09 +0000 (14:27 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Fri, 2 Nov 2012 17:07:35 +0000 (18:07 +0100)
When no widget is provided we hardcode the height and the value
was off by 2. There is no change when a widget is provided.

Change-Id: I555b5206b8750db06595a1e2572a3f8212635a9d
Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
src/widgets/styles/qmacstyle_mac.mm

index 04fdb99..b957650 100644 (file)
@@ -6252,6 +6252,7 @@ QSize QMacStyle::sizeFromContents(ContentsType ct, const QStyleOption *opt,
         return sz;
     case CT_ComboBox:
         sz.rwidth() += 50;
+        sz.rheight() += 2;
         break;
     case CT_Menu: {
         QStyleHintReturnMask menuMask;