Re: Editable fields in a borderless window
Re: Editable fields in a borderless window
- Subject: Re: Editable fields in a borderless window
- From: Louis Sinclair <email@hidden>
- Date: Thu, 15 Sep 2005 18:34:49 -0500
Thanks Robert, and all who replied to my question. Works like a charm!
--
Louis
At 05:18 PM 9/15/05, Robert Clair wrote:
You have to subclass NSWindow and override [NSWindow
canBecomeKeyWindow] to return YES in your custom class:
- (BOOL) canBecomeKeyWindow
{
return YES;
}
The default implementation returns NO for a borderless window.
...Bob Clair
--
Louis Sinclair
Minnetonka Audio Software, Inc.
_______________________________________________
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