bug 441235, shift-tab gets stuck in the comments field in the Mac crashreporter client. r=ted

This commit is contained in:
Håkan Waara 2008-06-24 21:58:19 +02:00
parent a464b14562
commit 1ec04905f1
2 changed files with 6 additions and 0 deletions

View File

@ -132,6 +132,7 @@
- (BOOL)resignFirstResponder;
- (void)setPlaceholder:(NSString*)placeholder;
- (void)insertTab:(id)sender;
- (void)insertBacktab:(id)sender;
- (void)setEnabled:(BOOL)enabled;
- (void)dealloc;

View File

@ -677,6 +677,11 @@ static bool RestartApplication()
[[self window] selectNextKeyView:sender];
}
- (void)insertBacktab:(id)sender
{
[[self window] selectPreviousKeyView:sender];
}
- (void)setEnabled:(BOOL)enabled
{
[self setSelectable:enabled];