Bug 237611 init mPercent to -1, not 0, so that the title also shows 0% progress

patch suggested by ZF.Dang <dantifer.dang@sun.com> r=biesi sr=bz
This commit is contained in:
cbiesinger%web.de 2004-07-18 19:50:24 +00:00
Родитель 23673826b6
Коммит e837051a4e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -72,7 +72,7 @@ function nsProgressDialog() {
this.mRequest = null;
this.mCompleted = false;
this.mMode = "normal";
this.mPercent = 0;
this.mPercent = -1;
this.mRate = 0;
this.mBundle = null;
this.mCancelDownloadOnClose = true;