Bug 406257 - reduce the number of rows in url bar autocomplete from 10 to 6. r=beltzner, ui-r=beltzner, a1.9b5=beltzner

This commit is contained in:
edward.lee@engineering.uiuc.edu 2008-03-21 23:58:41 -07:00
parent 9c5fba19eb
commit f63e7c463d
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);"