Skip to content

Commit

Permalink
Backed out changeset 36b79874a9c8, which fixed bug 4775
Browse files Browse the repository at this point in the history
This change broke individual key events, so I'm reverting the change until we can investigate a better fix.
  • Loading branch information
slouken committed Nov 28, 2019
1 parent b8d65da commit d4e1c79
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_NORMAL;
outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI
| EditorInfo.IME_FLAG_NO_FULLSCREEN /* API 11 */;

Expand Down

0 comments on commit d4e1c79

Please sign in to comment.