Disallow selecting group cells in file browser

Group cells are presently only used for the SCM status data source.
This commit is contained in:
Allan Odgaard
2013-02-03 10:48:29 +01:00
parent 7e527bd861
commit bfa3db1d79

View File

@@ -380,6 +380,9 @@ static NSSet* VisibleItems (NSOutlineView* outlineView, FSItem* root, NSMutableS
- (BOOL)outlineView:(NSOutlineView*)anOutlineView shouldSelectItem:(id)item
{
if([self outlineView:anOutlineView isGroupItem:item])
return NO;
NSInteger col = [anOutlineView clickedColumn];
NSInteger row = [anOutlineView clickedRow];
if(col != -1 && row != -1)