1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-12 07:03:44 +00:00

#3388 fix file completion percentage in the inspector

This commit is contained in:
Mitchell Livingston 2010-07-06 03:57:23 +00:00
parent 9e2106b5c4
commit daceb0d94a

View file

@ -206,7 +206,7 @@
FileListNode * node = (FileListNode *)[self objectValue];
const CGFloat progress = [torrent fileProgress: node];
NSString * percentString = [NSString percentString: [self floatValue] longDecimals: YES];
NSString * percentString = [NSString percentString: progress longDecimals: YES];
NSString * status = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@",
"Inspector -> Files tab -> file status string"), percentString, [NSString stringForFileSize: [node size]]];