Re: Not drawing NSTableView rows as selected?
Re: Not drawing NSTableView rows as selected?
- Subject: Re: Not drawing NSTableView rows as selected?
- From: Peter Maurer <email@hidden>
- Date: Wed, 29 Jun 2005 15:22:05 +0200
I'm trying to make a list of controls, kind of like you see in
Apple's Mail, in the Prefs>Rules window.
I should have been more clear. I meant:
in the window accessable within Mail via Prefs>Rules>Edit. (I
forgot to mention the edit button).
Try this:
@interface PMBlindTableView: NSTableView
{
}
@end
@implementation PMBlindTableView
- (id)_highlightColorForCell: (NSCell*)cell {
return [self backgroundColor];
}
- (void)highlightSelectionInClipRect: (NSRect)rect {
}
@end
Works for me. Cheers,
Peter.
__
http://www.petermaurer.de/software
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden