diff --git a/Changelog b/Changelog index b901206b8..32f68c2d5 100644 --- a/Changelog +++ b/Changelog @@ -5,6 +5,7 @@ - BUGFIX: Auto-disable the shutdown feature - BUGFIX: Remember the current property tab on startup - BUGFIX: Fix status list widget height issue on style change + - BUGFIX: Fix rounding issue in torrent progress display * Tue Oct 19 2010 - Christophe Dumez - v2.4.7 - BUGFIX: Display the priority column when the queueing system gets enabled diff --git a/src/transferlistdelegate.h b/src/transferlistdelegate.h index 1f6619c55..920c110fa 100644 --- a/src/transferlistdelegate.h +++ b/src/transferlistdelegate.h @@ -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;