]> granicus.if.org Git - transmission/commitdiff
Qt: Fix bad downloaded percentage in DetailsDialog
authordubhater <cantabile.desu@gmail.com>
Thu, 8 Mar 2018 12:12:52 +0000 (14:12 +0200)
committerGitHub <noreply@github.com>
Thu, 8 Mar 2018 12:12:52 +0000 (14:12 +0200)
It was always 0.0% as long as the torrent was not finished.

qt/DetailsDialog.cc

index d45d8ff36a3af1c31af8ca881dcfcaa57cf65191..01872d36ba989b74891839941f36d9204aace084 100644 (file)
@@ -513,7 +513,7 @@ void DetailsDialog::refresh()
             }
         }
 
-        double const d = 100.0 * (sizeWhenDone != 0 ? (sizeWhenDone - leftUntilDone) / sizeWhenDone : 1);
+        double const d = sizeWhenDone != 0 ? 100.0 * (sizeWhenDone - leftUntilDone) / sizeWhenDone : 100.0;
         QString pct = Formatter::percentToString(d);
 
         if (haveUnverified == 0 && leftUntilDone == 0)