Fix for issue #640.

This commit is contained in:
Nedyalko Nikolov
2015-09-01 08:48:34 +03:00
parent aa4a135138
commit 8a35098a55
2 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ function onSecurePropertyChanged(data: dependencyObservable.PropertyChangeData)
}
// Lower all autocapitalization bits, because password bits don't like them and we will receive "Unsupported input type: 16513" error for example.
newInputType = newInputType & ~28762; //28762 (0x00007000) 13,14,15bits
newInputType = newInputType & ~28672; //28672 (0x0070000) 13,14,15 bits (111 0000 0000 0000)
}
else {
if (currentClass === android.text.InputType.TYPE_CLASS_TEXT) {