fix: make integer type visible

This commit is contained in:
NickIliev
2020-01-15 14:44:57 +02:00
parent 8569b51a9a
commit ea8a4360b2

View File

@ -273,7 +273,7 @@ export abstract class EditableTextBase extends EditableTextBaseCommon {
break;
case "integer":
newInputType = android.text.InputType.TYPE_CLASS_NUMBER | android.text.InputType.TYPE_NUMBER_VARIATION_PASSWORD;
newInputType = android.text.InputType.TYPE_CLASS_NUMBER;
break;
default: