mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Disallow selecting group cells in file browser
Group cells are presently only used for the SCM status data source.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user