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

let asm-input-keyboard default to number-entry

B. Petersen преди 5 години
родител
ревизия
2a68ef62c1
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      deltachat-ios/Controller/ChatViewController.swift

+ 1 - 0
deltachat-ios/Controller/ChatViewController.swift

@@ -848,6 +848,7 @@ extension ChatViewController: MessageCellDelegate {
         inputDlg.addTextField(configurationHandler: { (textField) in
             textField.placeholder = msg.setupCodeBegin + ".."
             textField.text = orgText
+            textField.keyboardType = UIKeyboardType.numbersAndPunctuation // allows entering spaces; decimalPad would require a mask to keep things readable
         })
         inputDlg.addAction(UIAlertAction(title: String.localized("cancel"), style: .cancel, handler: nil))