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
This commit is contained in:
edward.lee%engineering.uiuc.edu
2008-03-22 06:58:41 +00:00
parent d99a3b61af
commit 6e2f4fc925
2 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -312,7 +312,7 @@
showimagecolumn="true"
enablehistory="true"
timeout="100"
maxrows="10"
maxrows="6"
newlines="stripsurroundingwhitespace"
oninput="URLBarOnInput(event);"
ontextentered="return handleURLBarCommand(param);"