mirror of
https://github.com/metabolist/metatext
synced 2025-01-15 11:26:47 +01:00
Fix keyboard not appearing when logging in on iPad
This commit is contained in:
parent
f49fc774e9
commit
bfcb999b25
@ -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 New Issue
Block a user