mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-21 16:55:46 +03:00
WebUI: replace deprecated property
This commit is contained in:
parent
5afeecbf18
commit
0c7045042d
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ window.qBittorrent.ProgressBar ??= (() => {
|
|||
this.vals.light.textContent = displayedValue;
|
||||
|
||||
const r = parseInt((this.vals.width * (value / 100)), 10);
|
||||
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)`);
|
||||
this.vals.dark.style.clipPath = `inset(0 calc(100% - ${r}px) 0 0)`;
|
||||
this.vals.light.style.clipPath = `inset(0 0 0 ${r}px)`;
|
||||
}
|
||||
|
||||
function ProgressBar_setWidth(value) {
|
||||
|
|
Loading…
Reference in a new issue