diff --git a/src/properties/propertieswidget.cpp b/src/properties/propertieswidget.cpp index 33912c27c..daae2c7f3 100644 --- a/src/properties/propertieswidget.cpp +++ b/src/properties/propertieswidget.cpp @@ -370,7 +370,10 @@ void PropertiesWidget::loadDynamicData() { showPiecesAvailability(false); } // Progress - progress_lbl->setText(QString::number(h.progress()*100., 'f', 1)+"%"); + float progress = h.progress()*100.; + if(progress > 99.94 && progress < 100.) + progress = 99.9; + progress_lbl->setText(QString::number(progress, 'f', 1)+"%"); } else { showPiecesAvailability(false); showPiecesDownloaded(false);