[categories] [index] [all (552)] [latest]
- (void)drawRect:(NSRect)dirtyRect {
NSGraphicsContext *context = [NSGraphicsContext currentContext];
[context saveGraphicsState];
[context setShouldAntialias:NO];
// draw here
[context restoreGraphicsState];
[super drawRect:dirtyRect];
}