mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
remove unneeded group row code
This commit is contained in:
parent
25a4d11db4
commit
15b9b0feb0
2 changed files with 2 additions and 10 deletions
|
@ -25,7 +25,6 @@
|
|||
#import "FileOutlineView.h"
|
||||
#import "FileNameCell.h"
|
||||
#import "FilePriorityCell.h"
|
||||
#import "NSApplicationAdditions.h"
|
||||
#import "Torrent.h"
|
||||
|
||||
@implementation FileOutlineView
|
||||
|
@ -115,12 +114,11 @@
|
|||
return fHoverRow;
|
||||
}
|
||||
|
||||
#warning remove unneeded code
|
||||
- (void) drawRow: (int) row clipRect: (NSRect) clipRect
|
||||
{
|
||||
NSDictionary * item = [self itemAtRow: row];
|
||||
if (![self isRowSelected: row] && (![NSApp isOnLeopardOrBetter] || ![[item objectForKey: @"IsFolder"] boolValue]))
|
||||
if (![self isRowSelected: row])
|
||||
{
|
||||
NSDictionary * item = [self itemAtRow: row];
|
||||
NSIndexSet * indexes = [item objectForKey: @"Indexes"];
|
||||
|
||||
if ([fTorrent checkForFiles: indexes] != NSOffState)
|
||||
|
|
|
@ -955,12 +955,6 @@ typedef enum
|
|||
return nil;
|
||||
}
|
||||
|
||||
#warning should keep?
|
||||
- (BOOL) outlineView: (NSOutlineView *) outlineView isGroupItem: (id) item
|
||||
{
|
||||
return /*[[item objectForKey: @"IsFolder"] boolValue]*/NO;
|
||||
}
|
||||
|
||||
- (float) outlineView: (NSOutlineView *) outlineView heightOfRowByItem: (id) item
|
||||
{
|
||||
if ([[item objectForKey: @"IsFolder"] boolValue])
|
||||
|
|
Loading…
Reference in a new issue