enable the context menu for enable selected properly
This commit is contained in:
parent
264cdfdc11
commit
2dccaa90c4
|
@ -613,7 +613,6 @@
|
||||||
if (action == @selector(setCheck:))
|
if (action == @selector(setCheck:))
|
||||||
{
|
{
|
||||||
Torrent * torrent = [fTorrents objectAtIndex: 0];
|
Torrent * torrent = [fTorrents objectAtIndex: 0];
|
||||||
NSDictionary * item;
|
|
||||||
NSIndexSet * indexSet = [fFileOutline selectedRowIndexes], * itemIndexes;
|
NSIndexSet * indexSet = [fFileOutline selectedRowIndexes], * itemIndexes;
|
||||||
NSMutableIndexSet * usedIndexes = [NSMutableIndexSet indexSet];
|
NSMutableIndexSet * usedIndexes = [NSMutableIndexSet indexSet];
|
||||||
int i, index, state = (menuItem == fFileCheckItem) ? NSOnState : NSOffState;
|
int i, index, state = (menuItem == fFileCheckItem) ? NSOnState : NSOffState;
|
||||||
|
@ -630,9 +629,24 @@
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
#warning disable if all can't be checked
|
|
||||||
if (action == @selector(setOnlySelectedCheck:))
|
if (action == @selector(setOnlySelectedCheck:))
|
||||||
return [fFileOutline selectedRow] != -1;
|
{
|
||||||
|
Torrent * torrent = [fTorrents objectAtIndex: 0];
|
||||||
|
NSIndexSet * indexSet = [fFileOutline selectedRowIndexes], * itemIndexes;
|
||||||
|
NSMutableIndexSet * usedIndexes = [NSMutableIndexSet indexSet];
|
||||||
|
int i, index;
|
||||||
|
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
|
||||||
|
{
|
||||||
|
itemIndexes = [[fFileOutline itemAtRow: i] objectForKey: @"Indexes"];
|
||||||
|
if (![usedIndexes containsIndexes: itemIndexes])
|
||||||
|
{
|
||||||
|
if ([torrent canChangeDownloadCheckForFiles: itemIndexes])
|
||||||
|
return YES;
|
||||||
|
[usedIndexes addIndexes: itemIndexes];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
if (action == @selector(setPriority:))
|
if (action == @selector(setPriority:))
|
||||||
{
|
{
|
||||||
|
@ -953,7 +967,8 @@
|
||||||
|
|
||||||
- (void) setFileOutlineHoverRowForEvent: (NSEvent *) event
|
- (void) setFileOutlineHoverRowForEvent: (NSEvent *) event
|
||||||
{
|
{
|
||||||
[fFileOutline setHoverRowForEvent: [[[fTabView selectedTabViewItem] identifier] isEqualToString: TAB_FILES_IDENT] ? event : nil];
|
[fFileOutline setHoverRowForEvent: [[[fTabView selectedTabViewItem] identifier] isEqualToString: TAB_FILES_IDENT]
|
||||||
|
? event : nil];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSArray *) peerSortDescriptors
|
- (NSArray *) peerSortDescriptors
|
||||||
|
|
Loading…
Reference in New Issue