mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
(qt) fix oversight in r10771
This commit is contained in:
parent
34083f1371
commit
d3c4c1ec16
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue