From 7ab18c71886260c3b287738492bbe94290586305 Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Sat, 21 Feb 2004 11:11:29 +0000 Subject: [PATCH] Fix 205107: focus search box in history quicksearch box. --- browser/components/history/content/history.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/browser/components/history/content/history.js b/browser/components/history/content/history.js index 897eb463252c..712c4d19667c 100644 --- a/browser/components/history/content/history.js +++ b/browser/components/history/content/history.js @@ -64,8 +64,7 @@ function HistoryCommonInit() // If it's empty, this will do the right thing and just group by the old grouping. searchHistory(gSearchBox.value); - gHistoryTree.focus(); - gHistoryTree.treeBoxObject.view.selection.select(0); + gSearchBox.focus(); } function historyOnSelect()