make sure the text field has focus after find (bug 284948)

This commit is contained in:
pinkerton%aol.net 2005-05-02 17:45:55 +00:00
parent 632d420c78
commit 25c533cf24

View File

@ -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];
}