mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 17:23:59 +00:00
make sure the text field has focus after find (bug 284948)
This commit is contained in:
parent
632d420c78
commit
25c533cf24
@ -118,8 +118,10 @@
|
||||
- (IBAction) findNextAndOrderOut: (id)aSender
|
||||
{
|
||||
[self putFindStringOnPasteboard];
|
||||
if (![self find:NO])
|
||||
if (![self find:NO]) {
|
||||
NSBeep();
|
||||
[[self window] makeFirstResponder:mSearchField];
|
||||
}
|
||||
else
|
||||
[self close];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user