12 lines
196 B
Mathematica
12 lines
196 B
Mathematica
|
#import "GBBorderView.h"
|
||
|
|
||
|
@implementation GBBorderView
|
||
|
|
||
|
- (void)drawRect:(NSRect)dirtyRect {
|
||
|
[[NSColor blackColor] setFill];
|
||
|
NSRectFill(dirtyRect);
|
||
|
[super drawRect:dirtyRect];
|
||
|
}
|
||
|
|
||
|
@end
|