diff options
author | 2011-11-15 09:11:11 -0800 | |
---|---|---|
committer | 2011-11-15 15:15:11 -0800 | |
commit | 549e295dc113bff50077c3c355dcd94af09a1b2f (patch) | |
tree | cc47d6a96c8a28ad6f1175bd6de2a6be2f03d730 /java/src | |
parent | 2549ce275a272d552c28121ea58742e54b640e54 (diff) | |
download | latinime-549e295dc113bff50077c3c355dcd94af09a1b2f.tar.gz latinime-549e295dc113bff50077c3c355dcd94af09a1b2f.tar.xz latinime-549e295dc113bff50077c3c355dcd94af09a1b2f.zip |
Fix updateFullscreenMode of LatinIME
Bug: 5597608
Change-Id: If4b18dc933493bd74bc5506c028af86b0450df1f
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 |