Re: Issue with NSView setFrame
Re: Issue with NSView setFrame
- Subject: Re: Issue with NSView setFrame
- From: PCWiz <email@hidden>
- Date: Mon, 12 Oct 2009 16:38:12 -0600
That worked brilliantly!! Thank you very much.
On 2009-10-12, at 3:59 PM, Dave Keck wrote:
- (void)mouseDidEnterView: (NSView *)newMouseOverView
{
if (mouseOverView)
{
[[mouseOverView animator] setFrame: oldMouseOverViewFrame];
}
mouseOverView = newMouseOverView;
if (mouseOverView)
{
oldMouseOverViewFrame = [mouseOverView frame];
[[mouseOverView animator] setFrame: magnifiedFrame];
}
}
_______________________________________________
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