mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 17:50:59 +00:00
Fix keyboard not appearing when logging in on iPad
This commit is contained in:
parent
f49fc774e9
commit
bfcb999b25
1 changed files with 4 additions and 1 deletions
|
@ -119,7 +119,10 @@ private extension AddIdentityViewController {
|
||||||
|
|
||||||
logInButton.setTitle(NSLocalizedString("add-identity.log-in", comment: ""), for: .normal)
|
logInButton.setTitle(NSLocalizedString("add-identity.log-in", comment: ""), for: .normal)
|
||||||
logInButton.addAction(
|
logInButton.addAction(
|
||||||
UIAction { [weak self] _ in self?.viewModel.logInTapped() },
|
UIAction { [weak self] _ in
|
||||||
|
self?.urlTextField.resignFirstResponder()
|
||||||
|
self?.viewModel.logInTapped()
|
||||||
|
},
|
||||||
for: .touchUpInside)
|
for: .touchUpInside)
|
||||||
|
|
||||||
joinButton.addAction(UIAction { [weak self] _ in self?.join() }, for: .touchUpInside)
|
joinButton.addAction(UIAction { [weak self] _ in self?.join() }, for: .touchUpInside)
|
||||||
|
|
Loading…
Reference in a new issue