mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Make value formatting consistent with GUI
This commit is contained in:
parent
97b4e4a3d3
commit
0f6dff6315
2 changed files with 9 additions and 6 deletions
|
@ -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)');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue