From 25dfbf07eb0d35cf6077e66e912abb70adff45ec Mon Sep 17 00:00:00 2001 From: "mozilla.mano%sent.com" Date: Thu, 20 Oct 2005 15:24:43 +0000 Subject: [PATCH] Bug 312913 - Caret mode no longer on by default in View Source window. patch from Uri Bernstein , r=me. --- toolkit/components/typeaheadfind/content/findBar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkit/components/typeaheadfind/content/findBar.js b/toolkit/components/typeaheadfind/content/findBar.js index 79c2d1c17a1..35abb76f787 100755 --- a/toolkit/components/typeaheadfind/content/findBar.js +++ b/toolkit/components/typeaheadfind/content/findBar.js @@ -371,7 +371,7 @@ function fireKeypressEvent(target, evt) target.dispatchEvent(event); } -function updateStatusBar() +function updateStatusBarFind() { var xulBrowserWindow = window.XULBrowserWindow; if (!xulBrowserWindow) @@ -423,7 +423,7 @@ function setFoundLink(foundLink) // fired by scroll event. So, we need to change the status bar text after // mouse event. if (gFindMode != FIND_NORMAL) - setTimeout(updateStatusBar, 0); + setTimeout(updateStatusBarFind, 0); } function finishFAYT(aKeypressEvent)