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

Fix the dash.

This commit is contained in:
Mitchell Livingston 2006-06-07 14:42:54 +00:00
parent e87d570c1f
commit b3b0935ee7

View file

@ -188,8 +188,9 @@
if ([self isActive])
{
[fStatusString appendString: @" - "];
if ([self progress] < 1.0)
[fStatusString appendFormat: @" - DL: %@, ", [NSString stringForSpeed: [self downloadRate]]];
[fStatusString appendFormat: @"DL: %@, ", [NSString stringForSpeed: [self downloadRate]]];
[fStatusString appendString: [@"UL: " stringByAppendingString:
[NSString stringForSpeed: [self uploadRate]]]];
}