Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7af1b837 authored by Leon Scroggins's avatar Leon Scroggins
Browse files

Remove the TAB key from <textarea>s.

Do not use flag for web edit, so that the IME does not have the
TAB key.

Fix for http://b/issue?id=2484101
parent 0eaa4d3a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -822,8 +822,9 @@ import java.util.ArrayList;
                break;
            case 1: // TEXT_AREA
                single = false;
                inputType |= EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE
                inputType = EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE
                        | EditorInfo.TYPE_TEXT_FLAG_CAP_SENTENCES
                        | EditorInfo.TYPE_CLASS_TEXT
                        | EditorInfo.TYPE_TEXT_FLAG_AUTO_CORRECT;
                imeOptions |= EditorInfo.IME_ACTION_NONE;
                break;