Fix jittering during download by padding the numbers
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2019-09-21 10:45:22 +02:00
parent 5e2ecd72a1
commit f13f11d255
Signed by: hamcha
GPG Key ID: 41467804B19A3315
1 changed files with 5 additions and 3 deletions

View File

@ -176,9 +176,11 @@ export default class SettingsView extends Vue {
current = `${(this.downloadProgress.progress / 2) | 0}`;
total = `${(this.downloadProgress.total / 2) | 0}`;
} else {
current = `${Math.round(this.downloadProgress.progress / 10485.76) /
100}`;
total = `${Math.round(this.downloadProgress.total / 10485.76) / 100} MB`;
const currentNum =
Math.round(this.downloadProgress.progress / 10485.76) / 100;
current = currentNum.toString().padEnd(currentNum < 10 ? 4 : 5, "0");
const totalNum = Math.round(this.downloadProgress.total / 10485.76) / 100;
total = totalNum.toString().padEnd(totalNum < 10 ? 4 : 5, "0") + " MB";
}
const percent = Math.round(
(this.downloadProgress.progress / this.downloadProgress.total) * 100