shift down text part of cell by 1px to get better centering w/in cell.

This commit is contained in:
pinkerton%aol.net 2004-02-11 17:52:21 +00:00
Родитель 40c23d6dcf
Коммит c43551eade
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -115,6 +115,11 @@
[image compositeToPoint:imageFrame.origin operation:NSCompositeSourceOver];
}
// shift down cellFrame by 1px to better align w/in rect. For some reason the default
// doesn't center correctly.
cellFrame.origin.y++;
cellFrame.size.height--;
[super drawWithFrame:cellFrame inView:controlView];
}