(qt) fix oversight in r10771

This commit is contained in:
Daniel Lee 2010-06-16 06:34:45 +00:00
parent 34083f1371
commit d3c4c1ec16
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ TorrentDelegate :: progressString( const Torrent& tor ) const
if( isMagnet ) // magnet link with no metadata
{
/* %1 is the percentage of torrent metadata downloaded */
str = tr( "Magnetized transfer - retrieving metadata ( %1% )" )
.arg( tor.metadataPercentDone() );
str = tr( "Magnetized transfer - retrieving metadata (%1%)" )
.arg( tor.metadataPercentDone() * 100.0, 0, 'f', 2 );
}
else if( !isDone ) // downloading
{