attempt to fix possible twinopen regression from bug 544657

This commit is contained in:
Dão Gottwald 2010-02-11 15:47:39 +01:00
Родитель 388f13e902
Коммит 0c74b07cbc
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -53,7 +53,10 @@
this.doubleClickSelectsAll = this._prefs.getBoolPref("doubleClickSelectsAll");
this.completeDefaultIndex = this._prefs.getBoolPref("autoFill");
this.timeout = this._prefs.getIntPref("delay");
this._setEmptyText();
setTimeout(function (self) {
if (self._setEmptyText)
self._setEmptyText();
}, 0, this);
this._urlTooltip = document.getElementById("urlTooltip");