Changeset 611

Show
Ignore:
Timestamp:
2007-09-24 04:07:20 (1 year ago)
Author:
MaierMan
Message:

pause sometimes does not reset activeChunks. pt.2
fix from the what-was-I-smoking dept.

Files:

Legend:

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

    r610 r611  
    945945        }, 
    946946        set activeChunks(nv) { 
    947                 if (nv < 0) { 
    948                         return; 
    949                 } 
     947                nv = Math.max(0, nv); 
    950948                this._activeChunks = nv; 
    951949                this.invalidate();