eliminate the non-displayed text explaining the control buttons in compact view

This commit is contained in:
Mitchell Livingston 2010-03-20 22:42:33 +00:00
parent b6aa2c6e2e
commit 021e6e9e33
1 changed files with 2 additions and 8 deletions

View File

@ -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