1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-09 13:50:00 +00:00

allDownloaded should look at leftUntilDone, not percentDone

This commit is contained in:
Mitchell Livingston 2009-03-14 20:11:17 +00:00
parent d15d48e75e
commit f8b1326101

View file

@ -935,7 +935,7 @@ int trashDataFile(const char * filename)
- (BOOL) allDownloaded
{
return [self progressDone] >= 1.0;
return [self sizeLeft] > 0;
}
- (BOOL) isComplete