Explorar el Código

return to email input field in NewContactController, if it doesn't contain a valid email address yet

cyberta hace 4 años
padre
commit
9a43ce7b00
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      deltachat-ios/Controller/NewContactController.swift

+ 2 - 0
deltachat-ios/Controller/NewContactController.swift

@@ -118,6 +118,8 @@ extension NewContactController: UITextFieldDelegate {
         } else if textField == nameCell.textField {
             if contactIsValid() {
                 saveContactButtonPressed()
+            } else {
+                emailCell.textField.becomeFirstResponder()
             }
         }
         return true