fix progress bar colors.

This commit is contained in:
Christopher Jeffrey 2013-07-16 19:23:39 -05:00
parent 8a32e87cd9
commit fbf08e1288

View File

@ -3376,7 +3376,7 @@ ProgressBar.prototype.render = function(stop) {
yi = yi + ((yl - yi) - (((yl - yi) * (this.filled / 100)) | 0));
}
dattr = this.sattr(this, this.barFg, this.barBg);
dattr = this.sattr(this, this.style.bar.fg, this.style.bar.bg);
this.screen.fillRegion(dattr, this.ch, xi, xl, yi, yl);