11 lines
331 B
Objective-C
11 lines
331 B
Objective-C
#import "GBImageCell.h"
|
|
|
|
@implementation GBImageCell
|
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
|
|
{
|
|
CGContextRef context = [[NSGraphicsContext currentContext] CGContext];
|
|
CGContextSetInterpolationQuality(context, kCGInterpolationNone);
|
|
[super drawWithFrame:cellFrame inView:controlView];
|
|
}
|
|
@end
|