From: Mitchell Livingston Date: Sun, 28 Aug 2011 00:38:31 +0000 (+0000) Subject: remove the queue position from the transfer name X-Git-Tag: 2.40b1~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9204d398000b43bf6ff627d626829923b2772d8;p=transmission remove the queue position from the transfer name --- diff --git a/macosx/TorrentCell.m b/macosx/TorrentCell.m index cc6e81dae..8a0c202bd 100644 --- a/macosx/TorrentCell.m +++ b/macosx/TorrentCell.m @@ -807,8 +807,7 @@ - (NSAttributedString *) attributedTitle { - NSString * title = [NSString stringWithFormat: @"%d %@", [[self representedObject] queuePosition], [[self representedObject] name]]; - //NSString * title = [[self representedObject] name]; + NSString * title = [[self representedObject] name]; return [[[NSAttributedString alloc] initWithString: title attributes: fTitleAttributes] autorelease]; }