From 021e6e9e332b793dd0672b4d3ffe8919ccbcbb6c Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 20 Mar 2010 22:42:33 +0000 Subject: [PATCH] eliminate the non-displayed text explaining the control buttons in compact view --- macosx/TorrentCell.m | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/macosx/TorrentCell.m b/macosx/TorrentCell.m index e7952008e..e27e7fb6a 100644 --- a/macosx/TorrentCell.m +++ b/macosx/TorrentCell.m @@ -840,14 +840,8 @@ - (NSString *) minimalStatusString { - NSString * buttonString; - if ((buttonString = [self buttonString])) - return buttonString; - else - { - Torrent * torrent = [self representedObject]; - return [fDefaults boolForKey: @"DisplaySmallStatusRegular"] ? [torrent shortStatusString] : [torrent remainingTimeString]; - } + Torrent * torrent = [self representedObject]; + return [fDefaults boolForKey: @"DisplaySmallStatusRegular"] ? [torrent shortStatusString] : [torrent remainingTimeString]; } - (void) drawImage: (NSImage *) image inRect: (NSRect) rect