From b3b0935ee7c4d4c25bdd343b38b3897aa12bfde4 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 7 Jun 2006 14:42:54 +0000 Subject: [PATCH] Fix the dash. --- macosx/Torrent.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index 0234203cc..d028cbb4c 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -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]]]]; }