diff options
author | 2012-01-16 20:24:06 -0800 | |
---|---|---|
committer | 2012-01-16 20:24:06 -0800 | |
commit | c0bfe54d8296ed5ecc18ab20e45146191c4885a0 (patch) | |
tree | a63144577ee5988029cb2bd033eed588bfb4408d /java/src/com/android/inputmethod/latin | |
parent | e3f90db6a4d603e0a5163bd0cd29f9bb37296825 (diff) | |
parent | edf107e2a610c53f419995e8268bf6a333bfdd46 (diff) | |
download | latinime-c0bfe54d8296ed5ecc18ab20e45146191c4885a0.tar.gz latinime-c0bfe54d8296ed5ecc18ab20e45146191c4885a0.tar.xz latinime-c0bfe54d8296ed5ecc18ab20e45146191c4885a0.zip |
am edf107e2: Merge "Add "force non-distinct multitouch" debug option"
* commit 'edf107e2a610c53f419995e8268bf6a333bfdd46':
Add "force non-distinct multitouch" debug option
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-rw-r--r-- | java/src/com/android/inputmethod/latin/DebugSettings.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/DebugSettings.java b/java/src/com/android/inputmethod/latin/DebugSettings.java index 2f1e7c2b8..3805da154 100644 --- a/java/src/com/android/inputmethod/latin/DebugSettings.java +++ b/java/src/com/android/inputmethod/latin/DebugSettings.java @@ -30,6 +30,7 @@ public class DebugSettings extends PreferenceActivity private static final String TAG = "DebugSettings"; private static final String DEBUG_MODE_KEY = "debug_mode"; + public static final String FORCE_NON_DISTINCT_MULTITOUCH_KEY = "force_non_distinct_multitouch"; private boolean mServiceNeedsRestart = false; private CheckBoxPreference mDebugMode; @@ -60,6 +61,8 @@ public class DebugSettings extends PreferenceActivity updateDebugMode(); mServiceNeedsRestart = true; } + } else if (key.equals(FORCE_NON_DISTINCT_MULTITOUCH_KEY)) { + mServiceNeedsRestart = true; } } |