diff options
author | 2011-11-15 17:19:20 -0800 | |
---|---|---|
committer | 2011-11-15 17:19:20 -0800 | |
commit | 68ed5f157a7da2418725421ce28452fe698a8670 (patch) | |
tree | cc47d6a96c8a28ad6f1175bd6de2a6be2f03d730 /java/src | |
parent | f64b1052215339b6cdd80643a7f590a063128df4 (diff) | |
parent | 549e295dc113bff50077c3c355dcd94af09a1b2f (diff) | |
download | latinime-68ed5f157a7da2418725421ce28452fe698a8670.tar.gz latinime-68ed5f157a7da2418725421ce28452fe698a8670.tar.xz latinime-68ed5f157a7da2418725421ce28452fe698a8670.zip |
am 549e295d: Fix updateFullscreenMode of LatinIME
* commit '549e295dc113bff50077c3c355dcd94af09a1b2f':
Fix updateFullscreenMode of LatinIME
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 6d4569b76..d57154ad5 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -738,7 +738,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar if (mSuggest != null && mSettingsValues.mAutoCorrectEnabled) { mSuggest.setAutoCorrectionThreshold(mSettingsValues.mAutoCorrectionThreshold); - } + } mVoiceProxy.loadSettings(attribute, mPrefs); // This will work only when the subtype is not supported. LanguageSwitcherProxy.loadSettings(); @@ -1062,9 +1062,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar super.updateFullscreenMode(); if (mKeyPreviewBackingView == null) return; - // In extract mode, no need to have extra space to show the key preview. + // In fullscreen mode, no need to have extra space to show the key preview. // If not, we should have extra space above the keyboard to show the key preview. - mKeyPreviewBackingView.setVisibility(isExtractViewShown() ? View.GONE : View.VISIBLE); + mKeyPreviewBackingView.setVisibility(isFullscreenMode() ? View.GONE : View.VISIBLE); } @Override |