2016-10-26 21:14:02 +00:00
|
|
|
#import "GBImageCell.h"
|
|
|
|
|
|
|
|
@implementation GBImageCell
|
|
|
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
|
|
|
|
{
|
2020-04-11 15:03:10 +00:00
|
|
|
CGContextRef context = [[NSGraphicsContext currentContext] graphicsPort];
|
2016-10-26 21:14:02 +00:00
|
|
|
CGContextSetInterpolationQuality(context, kCGInterpolationNone);
|
|
|
|
[super drawWithFrame:cellFrame inView:controlView];
|
|
|
|
}
|
|
|
|
@end
|