mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 07:02:39 +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;
|
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 {
|
- (void)tableViewSelectionDidChange:(NSNotification *)notification {
|
||||||
MPDocument *document = [[self windowController] document];
|
MPDocument *document = [[self windowController] document];
|
||||||
if([self.entryTable selectedRow] < 0 || [[_entryTable selectedRowIndexes] count] > 1) {
|
if([self.entryTable selectedRow] < 0 || [[_entryTable selectedRowIndexes] count] > 1) {
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ After that you can build and run in Xcode. If you run into signing issues take a
|
|||||||
* KDBX DeletedObjects are stripped on save. This will break synchronisation features!
|
* KDBX DeletedObjects are stripped on save. This will break synchronisation features!
|
||||||
* Binary releases (since 0.4.x):
|
* Binary releases (since 0.4.x):
|
||||||
* KDBX History is only preseverd. Editting doesn't create new history entries
|
* KDBX History is only preseverd. Editting doesn't create new history entries
|
||||||
|
* Default Autotype Sequences will get stored
|
||||||
|
* Default Autotype sequence is wrong ````{TAB}{USERNAME}{TAB}{PASSWORD}{ENTER}```` instead of ````{USERNAME}{TAB}{PASSWORD}{ENTER}````
|
||||||
|
|
||||||
##System Requirement
|
##System Requirement
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user