diff --git a/src/styleitem/qstyleitem.cpp b/src/styleitem/qstyleitem.cpp
index ea1c11a178e984073b3b6a81bcd9c242b4bdf822..54897510b9c9a45bd855c8caff80cc7d58b6cdd7 100644
--- a/src/styleitem/qstyleitem.cpp
+++ b/src/styleitem/qstyleitem.cpp
@@ -576,9 +576,9 @@ QSize QStyleItem::sizeFromContents(int width, int height)
     }
 
 #ifdef Q_WS_MAC
-    // ### hack - With even heights, the text baseline is off on mac
-    if (size.height() %2 == 0)
-        size.setHeight(size.height() + 1);
+//    ### hack - With even heights, the text baseline is off on mac
+//    if (size.height() %2 == 0)
+//        size.setHeight(size.height() + 1);
 #endif
     return size;
 }