From 0506c2fbb91f5bf88642bd49166d5378588384e4 Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Fri, 2 Nov 2012 14:27:09 +0100 Subject: Fix height of combobox in macstyle without a widget 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 --- src/widgets/styles/qmacstyle_mac.mm | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/widgets/styles/qmacstyle_mac.mm b/src/widgets/styles/qmacstyle_mac.mm index 04fdb99b93..b95765031c 100644 --- a/src/widgets/styles/qmacstyle_mac.mm +++ b/src/widgets/styles/qmacstyle_mac.mm @@ -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; -- cgit v1.2.3