issue #2920: Change internal ios keyboard type EditBox::InputMode::NUMERIC from UIKeyboardTypeNumbersAndPunctuation to UIKeyboardTypeDecimalPad

This commit is contained in:
boyu0 2014-02-17 14:33:26 +08:00
parent 20ee1d2666
commit a261ba9df2
1 changed files with 1 additions and 1 deletions

View File

@ -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;