Changed input type to capitalize words for Linear alpha fields.

This commit is contained in:
Erik C. Thauvin 2016-09-03 12:21:15 -07:00
parent f4055d9c21
commit 0bc362205f

View file

@ -103,7 +103,7 @@ class ProgrammingActivity : AppCompatActivity(), AnkoLogger {
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS
inputFilters.add(AlphaFilter(Dtmf.DKS_EXTRAS))
} else if (params.type.equals(Dtmf.LINEAR, true)) {
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_SENTENCES
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_WORDS
inputFilters.add(AlphaFilter(Dtmf.LINEAR_EXTRAS))
}
} else {