Call action on return if password was added

This is an obvious change.
This commit is contained in:
Flowinho 2020-03-11 14:02:06 +01:00
parent 66fae15f64
commit b178fe93af
2 changed files with 2 additions and 0 deletions

View File

@ -164,6 +164,7 @@ extension FeedWranglerAccountViewController: UITextFieldDelegate {
passwordTextField.becomeFirstResponder()
} else {
textField.resignFirstResponder()
action(self)
}
return true
}

View File

@ -163,6 +163,7 @@ extension FeedbinAccountViewController: UITextFieldDelegate {
passwordTextField.becomeFirstResponder()
} else {
textField.resignFirstResponder()
action(self)
}
return true
}