1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 01:44:26 +00:00

- Hide piece availability and pieces downloaded bars when the shown torrent gets complete

This commit is contained in:
Christophe Dumez 2009-11-29 14:29:48 +00:00
parent ba8fd62900
commit 925597c43a

View File

@ -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;
}