aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-11-15 18:25:21 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-11-15 18:25:21 -0800
commiteb520c568365d690da4347c787a8c44708b52e50 (patch)
treed515bd30426cd2f9c6f41daef212e8429a89682c /java/src
parented631627cb2337b025f0e80df6fecf1e6e511dc4 (diff)
parent549e295dc113bff50077c3c355dcd94af09a1b2f (diff)
downloadlatinime-eb520c568365d690da4347c787a8c44708b52e50.tar.gz
latinime-eb520c568365d690da4347c787a8c44708b52e50.tar.xz
latinime-eb520c568365d690da4347c787a8c44708b52e50.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.java6
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 504dead40..167e500f6 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -747,7 +747,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();
@@ -1077,9 +1077,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