mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
Fix a progress rounding issue
This commit is contained in:
parent
8a64a6441e
commit
e3ccea3b17
1 changed files with 5 additions and 1 deletions
|
@ -166,7 +166,11 @@ public:
|
|||
}
|
||||
case TR_PROGRESS:{
|
||||
QStyleOptionProgressBarV2 newopt;
|
||||
const double progress = index.data().toDouble()*100.;
|
||||
qreal progress = index.data().toDouble()*100.;
|
||||
// We don't want to display 100% unless
|
||||
// the torrent is really complete
|
||||
if(progress > 99.94 && progress < 100.)
|
||||
progress = 99.9;
|
||||
newopt.rect = opt.rect;
|
||||
newopt.text = QString::number(progress, 'f', 1)+"%";
|
||||
newopt.progress = (int)progress;
|
||||
|
|
Loading…
Reference in a new issue