Attributed string menu items are sometimes clipped

This commit is contained in:
Airy ANDRE 2014-01-16 19:59:13 +01:00
parent c0273cfb39
commit 956d2124b9

View File

@ -282,6 +282,7 @@ static NSRect boundsToTitleAreaRect(NSRect rect){
#define CENTER_PART_RECT_VERTICALLY(partSize) \
{ \
NSSize __partSize = (partSize); \
__partSize.width = ceilf(__partSize.width); \
partRect.origin.y = origin.y + (itemHeight - __partSize.height) / 2; \
partRect.size.height = __partSize.height; \
partRect.size.width = __partSize.width; \