mirror of https://github.com/axmolengine/axmol.git
issue #2920: Change internal ios keyboard type EditBox::InputMode::NUMERIC from UIKeyboardTypeNumbersAndPunctuation to UIKeyboardTypeDecimalPad
This commit is contained in:
parent
20ee1d2666
commit
a261ba9df2
|
@ -422,7 +422,7 @@ void EditBoxImplIOS::setInputMode(EditBox::InputMode inputMode)
|
|||
_systemControl.textField.keyboardType = UIKeyboardTypeEmailAddress;
|
||||
break;
|
||||
case EditBox::InputMode::NUMERIC:
|
||||
_systemControl.textField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
|
||||
_systemControl.textField.keyboardType = UIKeyboardTypeDecimalPad;
|
||||
break;
|
||||
case EditBox::InputMode::PHONE_NUMBER:
|
||||
_systemControl.textField.keyboardType = UIKeyboardTypePhonePad;
|
||||
|
|
Loading…
Reference in New Issue