From 5e6e31fb4744402616b7473aeaea5b8f67ec73f7 Mon Sep 17 00:00:00 2001 From: michael starke Date: Fri, 19 Jul 2013 18:26:42 +0200 Subject: [PATCH] Fixed Issue with non-initalized password repeat filed on first load of the databaseSettings window --- MacPass/MPDatabaseSettingsWindowController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacPass/MPDatabaseSettingsWindowController.m b/MacPass/MPDatabaseSettingsWindowController.m index 431154f3..b35f23b0 100644 --- a/MacPass/MPDatabaseSettingsWindowController.m +++ b/MacPass/MPDatabaseSettingsWindowController.m @@ -201,7 +201,7 @@ - (void)_setupPasswordTab:(Kdb4Tree *)tree { [self.passwordTextField setStringValue:_document.password ? _document.password : @""]; - [self.passwordRepeatTextField setStringValue:[self.passwordRepeatTextField stringValue]]; + [self.passwordRepeatTextField setStringValue:[self.passwordTextField stringValue]]; self.keyURL = _document.key; NSDictionary *negateOption = @{ NSValueTransformerNameBindingOption : NSNegateBooleanTransformerName };