mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
get table buttons working again
This commit is contained in:
parent
9685e9563b
commit
2047901eae
1 changed files with 3 additions and 2 deletions
|
@ -171,9 +171,10 @@
|
|||
[super updateCell: cell];
|
||||
}
|
||||
|
||||
- (NSIndexSet *)tableView:(NSTableView *)tableView selectionIndexesForProposedSelection:(NSIndexSet *)proposedSelectionIndexes
|
||||
- (void)tableViewSelectionIsChanging:(NSNotification *)aNotification
|
||||
{
|
||||
return fSelectedIndexes ? fSelectedIndexes : proposedSelectionIndexes;
|
||||
if (fSelectedIndexes)
|
||||
[self selectRowIndexes: fSelectedIndexes byExtendingSelection: NO];
|
||||
}
|
||||
|
||||
- (void) mouseDown: (NSEvent *) event
|
||||
|
|
Loading…
Reference in a new issue