Backed out changeset 36b79874a9c8, which fixed bug 4775

This change broke individual key events, so I'm reverting the change until we can investigate a better fix.
This commit is contained in:
Sam Lantinga 2019-11-27 17:17:03 -08:00
parent b8d65da459
commit d4e1c79720
1 changed files with 1 additions and 1 deletions

View File

@ -2120,7 +2120,7 @@ class DummyEdit extends View implements View.OnKeyListener {
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 */;