libs-gui/Source/NSTableHeaderCell.m

13 lines
324 B
Mathematica
Raw Normal View History

#include <AppKit/NSTableHeaderCell.h>
#include <AppKit/NSColor.h>
@implementation NSTableHeaderCell
- (void)drawInteriorWithFrame:(NSRect)cellFrame
inView:(NSView *)controlView
{
[[NSColor darkGrayColor] set];
NSRectFill(cellFrame);
[super drawInteriorWithFrame: cellFrame inView: controlView];
}
@end