File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
extensions/widgets/androidfield Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1258,7 +1258,9 @@ handler SetIsPassword(in pPassword as Boolean)
12581258 variable tPasswordTransformationMethod as JObject
12591259 put PasswordTransformationMethod_getInstance() into tPasswordTransformationMethod
12601260 TextView_setTransformationMethod(mNativeObj, tPasswordTransformationMethod)
1261- TextView_setInputType(mNativeObj, TYPE_TEXT_FLAG_NO_SUGGESTIONS)
1261+ variable tNewFlags as Integer
1262+ put BitwiseOrList([TYPE_CLASS_TEXT, TYPE_TEXT_VARIATION_PASSWORD]) into tNewFlags
1263+ TextView_setInputType(mNativeObj, tNewFlags)
12621264 else if not pPassword and mTransformationMethod is not nothing then
12631265 TextView_setTransformationMethod(mNativeObj, mTransformationMethod)
12641266 end if
Original file line number Diff line number Diff line change 1+ # [ 20518] Set correct keyboard input type for passwords
You can’t perform that action at this time.
0 commit comments