keep one image for the table view instead of one for regular and one for minimal

This commit is contained in:
Mitchell Livingston
2007-08-16 03:58:50 +00:00
parent 91304ec1e6
commit 75ec8bac79
5 changed files with 8 additions and 19 deletions

View File

@@ -451,7 +451,7 @@
if (row < 0)
return NSZeroRect;
NSRect cellRect = [self frameOfCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: row];
NSRect cellRect = [self frameOfCellAtColumn: 0 row: row];
float buttonToTop = [fDefaults boolForKey: @"SmallView"] ? BUTTON_TO_TOP_SMALL : BUTTON_TO_TOP_REGULAR;
@@ -464,7 +464,7 @@
if (row < 0)
return NSZeroRect;
NSRect cellRect = [self frameOfCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: row];
NSRect cellRect = [self frameOfCellAtColumn: 0 row: row];
float buttonToTop = [fDefaults boolForKey: @"SmallView"] ? BUTTON_TO_TOP_SMALL : BUTTON_TO_TOP_REGULAR;