mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 11:49:01 +03:00
- Fix progress display in torrent properties
This commit is contained in:
parent
4824637681
commit
1c08bf054a
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ void PropertiesWidget::loadDynamicData() {
|
|||
if(progressBarUpdater)
|
||||
progressBarUpdater->refresh();
|
||||
// Progress
|
||||
progress_lbl->setText(QString::number(h.progress(), 'f', 1)+"%");
|
||||
progress_lbl->setText(QString::number(h.progress()*100., 'f', 1)+"%");
|
||||
// Files progress
|
||||
std::vector<size_type> fp;
|
||||
h.file_progress(fp);
|
||||
|
|
Loading…
Reference in a new issue