Remove debugging "Save" button + fix keybaord appearance.
[FIXED] Keyboard didn't appear when app is reactivated. [REMOVED] "Save" option in user menu on lock screen was for debugging.
This commit is contained in:
parent
b38e8d9ea6
commit
d429044f64
@ -292,7 +292,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
[self updateLayoutAnimated:YES allowScroll:YES completion:^(BOOL finished) {
|
[self updateLayoutAnimated:YES allowScroll:YES completion:^(BOOL finished) {
|
||||||
if (finished)
|
|
||||||
if (self.selectedUser)
|
if (self.selectedUser)
|
||||||
[self.passwordField becomeFirstResponder];
|
[self.passwordField becomeFirstResponder];
|
||||||
}];
|
}];
|
||||||
@ -738,8 +737,7 @@
|
|||||||
|
|
||||||
[PearlSheet showSheetWithTitle:targetedUser.name
|
[PearlSheet showSheetWithTitle:targetedUser.name
|
||||||
message:nil viewStyle:UIActionSheetStyleBlackTranslucent
|
message:nil viewStyle:UIActionSheetStyleBlackTranslucent
|
||||||
initSheet:nil
|
initSheet:nil tappedButtonBlock:^(UIActionSheet *sheet, NSInteger buttonIndex) {
|
||||||
tappedButtonBlock:^(UIActionSheet *sheet, NSInteger buttonIndex) {
|
|
||||||
if (buttonIndex == [sheet cancelButtonIndex])
|
if (buttonIndex == [sheet cancelButtonIndex])
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -749,16 +747,14 @@
|
|||||||
}];
|
}];
|
||||||
[[MPAppDelegate get] saveContext];
|
[[MPAppDelegate get] saveContext];
|
||||||
[self updateUsers];
|
[self updateUsers];
|
||||||
} else
|
return;
|
||||||
if (buttonIndex == [sheet firstOtherButtonIndex]) {
|
}
|
||||||
|
|
||||||
|
if (buttonIndex == [sheet firstOtherButtonIndex])
|
||||||
[[MPAppDelegate get] changeMasterPasswordFor:targetedUser didResetBlock:^{
|
[[MPAppDelegate get] changeMasterPasswordFor:targetedUser didResetBlock:^{
|
||||||
[[self avatarForUser:targetedUser] setSelected:YES];
|
[[self avatarForUser:targetedUser] setSelected:YES];
|
||||||
}];
|
}];
|
||||||
}
|
} cancelTitle:[PearlStrings get].commonButtonCancel
|
||||||
else
|
destructiveTitle:@"Delete User" otherTitles:@"Reset Password", nil];
|
||||||
[[MPAppDelegate get] saveContext];
|
|
||||||
} cancelTitle:[PearlStrings get].commonButtonCancel destructiveTitle:@"Delete User" otherTitles:@"Reset Password",
|
|
||||||
@"Save",
|
|
||||||
nil];
|
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
Loading…
Reference in New Issue
Block a user