Changeset 511

Show
Ignore:
Timestamp:
2007-07-11 21:09:42 (1 year ago)
Author:
MaierMan
Message:

fixing partly #255: Dialog.refresh did it's one progress computation instead of using the already calculated value from the download.
Now it's one computation less, and the value of window won't be "ahead" of the download value

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/dta/manager.js

    r510 r511  
    129129                        if (this._running.length == 1 && this._running[0].d.totalSize > 0) { 
    130130                                document.title = 
    131                                         Math.round(this._running[0].d.partialSize / this._running[0].d.totalSize * 100) + "% - " 
     131                                        this._running[0].d.percent 
     132                                        + ' - ' 
    132133                                        + this.completed + "/" + Tree.rowCount + " - " 
    133134                                        + speed + "/s - DownThemAll! - " + _("dip");