diff options
author | 2011-10-03 18:34:34 +0900 | |
---|---|---|
committer | 2011-10-03 20:41:03 +0900 | |
commit | 294e1b4a5abb86e58deefc8eee40e6b661524b28 (patch) | |
tree | 86785119d0c718c1be6807dee74abbe20e0648b1 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 21ffb08a73d3686abfa43f8e4eeae1afc09284d7 (diff) | |
download | latinime-294e1b4a5abb86e58deefc8eee40e6b661524b28.tar.gz latinime-294e1b4a5abb86e58deefc8eee40e6b661524b28.tar.xz latinime-294e1b4a5abb86e58deefc8eee40e6b661524b28.zip |
Pass the touch position correction flag from KeyboardSwitcher.
Change-Id: Ia242a9fa2fa71f7fdf8f974071a2df7acc4aa51f
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 83b79f74c..882895f25 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -119,6 +119,12 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar public static final String SUBTYPE_EXTRA_VALUE_ASCII_CAPABLE = "AsciiCapable"; /** + * The subtype extra value used to indicate that the subtype keyboard layout supports touch + * position correction. + */ + public static final String SUBTYPE_EXTRA_VALUE_SUPPORT_TOUCH_POSITION_CORRECTION = + "SupportTouchPositionCorrection"; + /** * The subtype extra value used to indicate that the subtype keyboard layout should be loaded * from the specified locale. */ |