Re: Drawing over a transparent background
Re: Drawing over a transparent background
- Subject: Re: Drawing over a transparent background
- From: Dave Keck <email@hidden>
- Date: Tue, 1 Sep 2009 00:36:32 -1000
I believe you need to tell the window to invalidate its shadow. The end of
ClockView's drawRect: is a bad place to do it, but as a proof of concept:
- (void)drawRect: (NSRect)rect
{
... lots of drawing code ...
[[self window] invalidateShadow];
}
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please 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