Преглед на файлове

disable return key if no text is input

Jonas Reinsch преди 7 години
родител
ревизия
ff28c53fe5
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      deltachat-ios/CredentialsController.swift

+ 2 - 0
deltachat-ios/CredentialsController.swift

@@ -31,6 +31,8 @@ class TextFieldCell:UITableViewCell {
         textField.placeholder = placeholder
         
         selectionStyle = .none
+        
+        textField.enablesReturnKeyAutomatically = true
     }