diff options
author | 2011-07-22 02:41:31 -0700 | |
---|---|---|
committer | 2011-07-22 02:41:31 -0700 | |
commit | f3e76883612173f94a8f50b415b8ec89c79766ba (patch) | |
tree | 5fdc6a31363642e2e1ad24b33cd40576605a5213 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | a1778b9c84dd8085d9019485a0e70dc103595bce (diff) | |
parent | 255486a5d067469e074f3649b3d2747e7a08aaa2 (diff) | |
download | latinime-f3e76883612173f94a8f50b415b8ec89c79766ba.tar.gz latinime-f3e76883612173f94a8f50b415b8ec89c79766ba.tar.xz latinime-f3e76883612173f94a8f50b415b8ec89c79766ba.zip |
Merge "Disable VoiceInputLogger inside LatinIME"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 1364c4a54..324a13045 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -575,9 +575,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar LanguageSwitcherProxy.loadSettings(); if (mSubtypeSwitcher.isKeyboardMode()) { - switcher.loadKeyboard(attribute, - mSubtypeSwitcher.isShortcutImeEnabled() && voiceIme.isVoiceButtonEnabled(), - voiceIme.isVoiceButtonOnPrimary()); + switcher.loadKeyboard(attribute, mSettingsValues); switcher.updateShiftState(); } @@ -1900,9 +1898,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar setInputView(mKeyboardSwitcher.onCreateInputView()); } // Reload keyboard because the current language has been changed. - mKeyboardSwitcher.loadKeyboard(getCurrentInputEditorInfo(), - mSubtypeSwitcher.isShortcutImeEnabled() && mVoiceProxy.isVoiceButtonEnabled(), - mVoiceProxy.isVoiceButtonOnPrimary()); + mKeyboardSwitcher.loadKeyboard(getCurrentInputEditorInfo(), mSettingsValues); initSuggest(); loadSettings(); mKeyboardSwitcher.updateShiftState(); |