Skip to content

Commit

Permalink
Fixed bug 4775 - Japanese on Android, remove inputtype PASSWORD (Than…
Browse files Browse the repository at this point in the history
…ks Tamo!)
  • Loading branch information
1bsyl committed Oct 23, 2019
1 parent 3a8b899 commit 59352ce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2120,7 +2120,7 @@ public boolean onKeyPreIme (int keyCode, KeyEvent event) {
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
ic = new SDLInputConnection(this, true);

outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI
| EditorInfo.IME_FLAG_NO_FULLSCREEN /* API 11 */;

Expand Down

0 comments on commit 59352ce

Please sign in to comment.