Re: NSTableHeaderCell Woes...
Re: NSTableHeaderCell Woes...
- Subject: Re: NSTableHeaderCell Woes...
- From: Corbin Dunn <email@hidden>
- Date: Wed, 7 Dec 2005 08:00:01 -0800
A quick guess is this line of code:
NSRect _dividerRect = NSMakeRect(frame.size.width - 1, 0,
1,frame.size.height);
It should use "frame" as a base..such as:
_dividerRect = NSMakeRect(frame.origin.x + frame.size.width - 1, 0,
1,frame.size.height);
-corbin
_______________________________________________
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