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
This commit is contained in:
Leon Scroggins
2010-03-03 12:09:45 -05:00
parent 0eaa4d3a14
commit 7af1b837ff

View File

@@ -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;