mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Hide piece availability and pieces downloaded bars when the shown torrent gets complete
This commit is contained in:
parent
ba8fd62900
commit
925597c43a
1 changed files with 3 additions and 0 deletions
|
@ -327,6 +327,7 @@ void PropertiesWidget::loadDynamicData() {
|
|||
else
|
||||
shareRatio->setText(QString(QByteArray::number(ratio, 'f', 1)));
|
||||
if(!h.is_seed()) {
|
||||
showPieceBars(true);
|
||||
// Downloaded pieces
|
||||
downloaded_pieces->setProgress(h.pieces());
|
||||
// Pieces availability
|
||||
|
@ -336,6 +337,8 @@ void PropertiesWidget::loadDynamicData() {
|
|||
avail_average_lbl->setText(QString::number(avail_average, 'f', 1));
|
||||
// Progress
|
||||
progress_lbl->setText(QString::number(h.progress()*100., 'f', 1)+"%");
|
||||
} else {
|
||||
showPieceBars(false);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue