diff options
author | 2011-10-03 04:42:53 -0700 | |
---|---|---|
committer | 2011-10-03 04:42:53 -0700 | |
commit | a25dd3b5c3300fa8c8ab305afb955956529db088 (patch) | |
tree | 05e52f3db356bf717f36b301a8593a16c19650fd /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | c812d0b816c6e3ac4a2df23b5831b17acdc7c414 (diff) | |
parent | 294e1b4a5abb86e58deefc8eee40e6b661524b28 (diff) | |
download | latinime-a25dd3b5c3300fa8c8ab305afb955956529db088.tar.gz latinime-a25dd3b5c3300fa8c8ab305afb955956529db088.tar.xz latinime-a25dd3b5c3300fa8c8ab305afb955956529db088.zip |
Merge "Pass the touch position correction flag from KeyboardSwitcher."
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 036873cd9..36e97af11 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -118,6 +118,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. */ |