mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-17 23:09:32 +00:00
Updated Readme with warning of Autotype fuck up (0.4.2 will have a fix-up tool)
Fixed issue with inspector still displaying deleted entries
This commit is contained in:
@@ -293,6 +293,13 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
|
||||
return view;
|
||||
}
|
||||
|
||||
- (void)tableView:(NSTableView *)tableView didRemoveRowView:(NSTableRowView *)rowView forRow:(NSInteger)row {
|
||||
/* Rows being removed for data change should be chekced here to clear selections */
|
||||
if(row == -1) {
|
||||
[self tableViewSelectionDidChange:nil];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)tableViewSelectionDidChange:(NSNotification *)notification {
|
||||
MPDocument *document = [[self windowController] document];
|
||||
if([self.entryTable selectedRow] < 0 || [[_entryTable selectedRowIndexes] count] > 1) {
|
||||
|
||||
Reference in New Issue
Block a user