diff options
author | 2011-06-17 05:27:35 -0700 | |
---|---|---|
committer | 2011-06-17 05:27:35 -0700 | |
commit | 8f5a3842e6ef8e3890f7248ea3eb3a6dae4dc30c (patch) | |
tree | 065d38b619ca1b6657e80a9444ef85421029fa4a /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | c78278bfb492411f7a52624c01a26e7e56df2497 (diff) | |
parent | f0f726464dcb5b3cef4f8e703659b35ca62430b5 (diff) | |
download | latinime-8f5a3842e6ef8e3890f7248ea3eb3a6dae4dc30c.tar.gz latinime-8f5a3842e6ef8e3890f7248ea3eb3a6dae4dc30c.tar.xz latinime-8f5a3842e6ef8e3890f7248ea3eb3a6dae4dc30c.zip |
Merge "Disable showing TAB key when navigate flags are specified"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 87912eb00..fc01d3976 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -518,8 +518,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar LatinKeyboardView inputView = switcher.getKeyboardView(); if (DEBUG) { - Log.d(TAG, "onStartInputView: inputType=" + ((attribute == null) ? "none" - : String.format("0x%08x", attribute.inputType))); + Log.d(TAG, "onStartInputView: attribute:" + ((attribute == null) ? "none" + : String.format("inputType=0x%08x imeOptions=0x%08x", + attribute.inputType, attribute.imeOptions))); } // In landscape mode, this method gets called without the input view being created. if (inputView == null) { |