]> granicus.if.org Git - transmission/commitdiff
remove the queue position from the transfer name
authorMitchell Livingston <livings124@transmissionbt.com>
Sun, 28 Aug 2011 00:38:31 +0000 (00:38 +0000)
committerMitchell Livingston <livings124@transmissionbt.com>
Sun, 28 Aug 2011 00:38:31 +0000 (00:38 +0000)
macosx/TorrentCell.m

index cc6e81daeeb8caea6db1c511202c69a054c0882d..8a0c202bdb494ac522c27c2c054af2cb22c8a7e0 100644 (file)
 
 - (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];
 }