mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 19:21:16 +00:00
10 lines
257 B
Mathematica
10 lines
257 B
Mathematica
|
@implementation NSTableHeaderCell
|
||
|
- (void)drawInteriorWithFrame:(NSRect)cellFrame
|
||
|
inView:(NSView *)controlView
|
||
|
{
|
||
|
[[NSColor darkGrayColor] set];
|
||
|
NSRectFill(cellFrame);
|
||
|
[super drawInteriorWithFrame: cellFrame inView: controlView];
|
||
|
}
|
||
|
@end
|