11 lines
331 B
Mathematica
11 lines
331 B
Mathematica
|
#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
|