From 6e2f4fc925ec30dcd81895b1c1d1935f546c66eb Mon Sep 17 00:00:00 2001 From: "edward.lee%engineering.uiuc.edu" Date: Sat, 22 Mar 2008 06:58:41 +0000 Subject: [PATCH] Bug 406257 - reduce the number of rows in url bar autocomplete from 10 to 6. r=beltzner, ui-r=beltzner, a1.9b5=beltzner git-svn-id: svn://10.0.0.236/trunk@248408 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/app/profile/firefox.js | 2 +- mozilla/browser/base/content/browser.xul | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/browser/app/profile/firefox.js b/mozilla/browser/app/profile/firefox.js index 33475904d63..573d67ded20 100644 --- a/mozilla/browser/app/profile/firefox.js +++ b/mozilla/browser/app/profile/firefox.js @@ -217,7 +217,7 @@ pref("browser.urlbar.matchOnWordBoundary", true); pref("browser.urlbar.filter.javascript", true); // the maximum number of results to show in autocomplete when doing richResults -pref("browser.urlbar.maxRichResults", 25); +pref("browser.urlbar.maxRichResults", 12); // Size of "chunks" affects the number of places to process between each search // timeout (ms). Too big and the UI will be unresponsive; too small and we'll // be waiting on the timeout too often without many results. diff --git a/mozilla/browser/base/content/browser.xul b/mozilla/browser/base/content/browser.xul index 02c6c472a2a..fcb6fe16d01 100644 --- a/mozilla/browser/base/content/browser.xul +++ b/mozilla/browser/base/content/browser.xul @@ -312,7 +312,7 @@ showimagecolumn="true" enablehistory="true" timeout="100" - maxrows="10" + maxrows="6" newlines="stripsurroundingwhitespace" oninput="URLBarOnInput(event);" ontextentered="return handleURLBarCommand(param);"