Bug 99009: Fix annoying and long standing window status bug. r=caillon, sr=jst

This commit is contained in:
jaggernaut%netscape.com 2006-09-14 06:01:37 +00:00
Родитель c2ff08dfe9
Коммит 06c1f32fbc
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -129,8 +129,6 @@ nsBrowserStatusHandler.prototype =
{
this.jsStatus = status;
this.updateStatusField();
// set empty so defaults show up next change
this.jsStatus = "";
},
setJSDefaultStatus : function(status)
@ -155,7 +153,7 @@ nsBrowserStatusHandler.prototype =
updateStatusField : function()
{
var text = this.overLink || this.status || this.jsStatus || this.jsDefaultStatus || this.defaultStatus;
var text = this.jsStatus || this.overLink || this.status || this.jsDefaultStatus || this.defaultStatus;
// check the current value so we don't trigger an attribute change
// and cause needless (slow!) UI updates