Make value formatting consistent with GUI

This commit is contained in:
Thomas Piccirello 2017-12-08 23:39:33 -05:00
parent 97b4e4a3d3
commit 0f6dff6315
2 changed files with 9 additions and 6 deletions

View file

@ -78,8 +78,8 @@ function ProgressBar_setValue(value) {
this.vals.value = value;
this.vals.dark.empty();
this.vals.light.empty();
this.vals.dark.appendText(value + '%');
this.vals.light.appendText(value + '%');
this.vals.dark.appendText(value.round(1).toFixed(1) + '%');
this.vals.light.appendText(value.round(1).toFixed(1) + '%');
var r = parseInt(this.vals.width * (value / 100));
this.vals.dark.setStyle('clip', 'rect(0,' + r + 'px,' + this.vals.height + 'px,0)');
this.vals.light.setStyle('clip', 'rect(0,' + this.vals.width + 'px,' + this.vals.height + 'px,' + r + 'px)');