NSRulerView background color
NSRulerView background color
- Subject: NSRulerView background color
- From: Lorenzo <email@hidden>
- Date: Wed, 02 May 2007 11:21:15 +0200
Hi,
as you know the default background color of an NSRulerView is the window
with the horizontal gray lines. I would indeed set a gray color. So I
subclassed the NSRulerView and coded
-(void)drawHashMarksAndLabelsInRect:(NSRect)aRect
{
[[NSColor colorWithCalibratedWhite:0.85 alpha:1.0] set];
NSRectFill(aRect);
[super drawHashMarksAndLabelsInRect:aRect];
}
It works so and so, but sometimes the rulerView doesn't get refreshed and I
still see portions of the background window with the gray horizontal lines
pattern. I have tried to fill the rect in the drawRect method, but it is
worse. Any idea?
Best Regards
--
Lorenzo
email: email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden