Updated KeePassKit to fix faded Icon display

This commit is contained in:
Michael Starke
2018-08-16 17:02:54 +02:00
parent 99a5d5642e
commit 18abd4d5a1
4 changed files with 6 additions and 4 deletions

View File

@@ -359,12 +359,14 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGrou
NSError *error;
KPKTree *otherTree;
/* TODO determine KDB file format to set GroupByTitle options */
if(key) {
otherTree = [[KPKTree alloc] initWithContentsOfUrl:url key:key error:&error];
}
if(otherTree) {
[self.tree synchronizeWithTree:otherTree options:KPKSynchronizationSynchronizeOption];
[self.tree synchronizeWithTree:otherTree mode:KPKSynchronizationModeSynchronize options:0];
/* the key might have changed so update ours! */
//self.compositeKey = key;
[self updateChangeCount:NSChangeDone];