Re: shift+tab problem in dialogs
Re: shift+tab problem in dialogs
- Subject: Re: shift+tab problem in dialogs
- From: Andreas Mayer <email@hidden>
- Date: Wed, 20 Jul 2005 18:39:29 +0200
Am 20.07.2005 um 16:06 Uhr schrieb Luc Vandal:
Huh, make control #1 a NSTextField/NSComboBox. Seems like these
controls breaks shift+tab, according to some OT posts I found.
Anyone has a work around for this?
Subclass the control in question and overwrite:
- (void)insertBacktab:(id)sender
{
// move to previous key view
[[self window] makeFirstResponder:[self previousValidKeyView]];
}
That said, NSTextField does work for me as advertised. Did you mean
NSTextView?
Andreas
_______________________________________________
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