Pārlūkot izejas kodu

let asm-input-keyboard default to number-entry

B. Petersen 5 gadi atpakaļ
vecāks
revīzija
2a68ef62c1
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  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))