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:
michael starke
2014-04-04 23:18:24 +02:00
parent 3d8c0acf64
commit 33d992b7fb
2 changed files with 9 additions and 0 deletions

View File

@@ -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) {

View File

@@ -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!
* Binary releases (since 0.4.x):
* 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