bug 441235 - Shift-tab gets stuck in the comments field of the Mac crashreporter client. Patch by Hakan Waara <hwaara@gmail.com>, r=me a=ss

git-svn-id: svn://10.0.0.236/trunk@253142 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ted.mielczarek%gmail.com 2008-07-20 22:22:00 +00:00
parent 5a9d1e134b
commit 87c8495392
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];