Fix for bug 46678. We need to ignore onInput event right after somebody set the value of the textfield else autocomplete will start. R=radha

This commit is contained in:
ducarroz%netscape.com 2006-09-14 05:52:25 +00:00
Родитель 2c918e29cf
Коммит 6bc7fff182
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -365,7 +365,7 @@ nsXULBrowserWindow.prototype =
// We should probably not do this if the value has changed since the user
// searched
locationFld.setAttribute("value", location);
locationFld.value = location;
UpdateBackForwardButtons();
},