From 25c533cf240b515fab14424e471861d6b3bb3cd2 Mon Sep 17 00:00:00 2001 From: "pinkerton%aol.net" Date: Mon, 2 May 2005 17:45:55 +0000 Subject: [PATCH] make sure the text field has focus after find (bug 284948) --- camino/src/find/FindDlgController.mm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/camino/src/find/FindDlgController.mm b/camino/src/find/FindDlgController.mm index 549a124b9527..1a867f6aecce 100644 --- a/camino/src/find/FindDlgController.mm +++ b/camino/src/find/FindDlgController.mm @@ -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]; }