mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-19 00:19:22 +00:00
Re-enabled password request before saving a database that has no password and key
Stripped logging code Fixed issue with save panel not being updated correctly when panel is just reshown
This commit is contained in:
@@ -260,7 +260,6 @@ NSString *const _MPOutlinveViewHeaderViewIdentifier = @"HeaderCell";
|
||||
id item = userInfo[@"NSObject"];
|
||||
id representedObject = [item representedObject];
|
||||
if([representedObject isKindOfClass:[KPKGroup class]]) {
|
||||
NSLog(@"expanded:%@",representedObject);
|
||||
KPKGroup *group = (KPKGroup *)representedObject;
|
||||
group.isExpanded = YES;
|
||||
}
|
||||
@@ -270,7 +269,6 @@ NSString *const _MPOutlinveViewHeaderViewIdentifier = @"HeaderCell";
|
||||
id item = userInfo[@"NSObject"];
|
||||
id representedObject = [item representedObject];
|
||||
if([representedObject isKindOfClass:[KPKGroup class]]) {
|
||||
NSLog(@"collapsed:%@",representedObject);
|
||||
KPKGroup *group = (KPKGroup *)representedObject;
|
||||
group.isExpanded = NO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user