Make unlock window a sheet of the password window.
[IMPROVED] Unlock alert a sheet of the password window.
This commit is contained in:
parent
f622b2c7d4
commit
1b90c9bfa3
@ -133,10 +133,16 @@ static OSStatus MPHotKeyHander(EventHandlerCallRef nextHandler, EventRef theEven
|
|||||||
[alert setAccessoryView:passwordField];
|
[alert setAccessoryView:passwordField];
|
||||||
[alert layout];
|
[alert layout];
|
||||||
[passwordField becomeFirstResponder];
|
[passwordField becomeFirstResponder];
|
||||||
do {
|
[alert beginSheetModalForWindow:self.passwordWindow.window modalDelegate:self
|
||||||
NSInteger button = [alert runModal];
|
didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:) contextInfo:NULL];
|
||||||
|
|
||||||
if (button == 0)
|
[self printStore];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) alertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo {
|
||||||
|
|
||||||
|
if (returnCode == NSAlertAlternateReturn)
|
||||||
// "Change" button.
|
// "Change" button.
|
||||||
if ([[NSAlert alertWithMessageText:@"Changing Master Password"
|
if ([[NSAlert alertWithMessageText:@"Changing Master Password"
|
||||||
defaultButton:nil alternateButton:[PearlStrings get].commonButtonCancel otherButton:nil
|
defaultButton:nil alternateButton:[PearlStrings get].commonButtonCancel otherButton:nil
|
||||||
@ -145,19 +151,15 @@ static OSStatus MPHotKeyHander(EventHandlerCallRef nextHandler, EventRef theEven
|
|||||||
@"Note that you will only see the sites and passwords for the master password you log in with.\n"
|
@"Note that you will only see the sites and passwords for the master password you log in with.\n"
|
||||||
@"If you log in with a different master password, your current sites will be unavailable.\n\n"
|
@"If you log in with a different master password, your current sites will be unavailable.\n\n"
|
||||||
@"You can always change back to your current master password later.\n"
|
@"You can always change back to your current master password later.\n"
|
||||||
@"Your current sites and passwords will then become available again."] runModal] == 1) {
|
@"Your current sites and passwords will then become available again."] runModal] == 1)
|
||||||
[self forgetKey];
|
[self forgetKey];
|
||||||
continue;
|
|
||||||
}
|
if (returnCode == NSAlertOtherReturn)
|
||||||
if (button == -1) {
|
|
||||||
// "Quit" button.
|
// "Quit" button.
|
||||||
[[NSApplication sharedApplication] terminate:self];
|
[[NSApplication sharedApplication] terminate:self];
|
||||||
break;
|
|
||||||
}
|
|
||||||
} while (![self tryMasterPassword:[passwordField stringValue]]);
|
|
||||||
|
|
||||||
[self printStore];
|
if (![self tryMasterPassword:[(NSSecureTextField *)alert.accessoryView stringValue]])
|
||||||
});
|
[self unlock:self];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSUndoManager *)windowWillReturnUndoManager:(NSWindow *)window {
|
- (NSUndoManager *)windowWillReturnUndoManager:(NSWindow *)window {
|
||||||
|
Loading…
Reference in New Issue
Block a user