We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ada98c commit a56f82aCopy full SHA for a56f82a
PBFileChangesTableView.m
@@ -18,7 +18,8 @@ - (NSMenu *)menuForEvent:(NSEvent *)theEvent
18
NSPoint eventLocation = [self convertPoint: [theEvent locationInWindow] fromView: nil];
19
NSInteger rowIndex = [self rowAtPoint:eventLocation];
20
[self selectRowIndexes:[NSIndexSet indexSetWithIndex:rowIndex] byExtendingSelection:TRUE];
21
- return [[self delegate] menuForTable: self];
+ // TODO: Fix the coupling so we don't need the cast (at least).
22
+ return [(PBGitIndexController*)[self delegate] menuForTable: self];
23
}
24
25
return nil;
0 commit comments