mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
33 lines
497 B
Objective-C
33 lines
497 B
Objective-C
//
|
|
// XMLAttributesTableRowView.m
|
|
//
|
|
//
|
|
// Created by Douglas Ward on 12/20/17.
|
|
//
|
|
//
|
|
|
|
#import "XMLAttributesTableRowView.h"
|
|
|
|
@implementation XMLAttributesTableRowView
|
|
|
|
/*
|
|
- (void)drawRect:(NSRect)dirtyRect {
|
|
[super drawRect:dirtyRect];
|
|
|
|
// Drawing code here.
|
|
}
|
|
*/
|
|
|
|
- (NSBackgroundStyle)interiorBackgroundStyle
|
|
{
|
|
return NSBackgroundStyleLight;
|
|
}
|
|
|
|
- (NSTableViewSelectionHighlightStyle)selectionHighlightStyle
|
|
{
|
|
return NSTableViewSelectionHighlightStyleSourceList;
|
|
}
|
|
|
|
|
|
@end
|