aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-12-17 23:17:10 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-12-17 23:17:10 -0800
commitc9ca7964c82722a9007f59c009913d8b87959a58 (patch)
treec2d82e3595b481eba91133885aaaac66cfc18f15 /java/src/com/android/inputmethod/latin/LatinIME.java
parent87296a0fe295d7afebebe928b40ac3493d655686 (diff)
parent22b48de11ce6f31a0edf90e1308073e67a7a2adb (diff)
downloadlatinime-c9ca7964c82722a9007f59c009913d8b87959a58.tar.gz
latinime-c9ca7964c82722a9007f59c009913d8b87959a58.tar.xz
latinime-c9ca7964c82722a9007f59c009913d8b87959a58.zip
am 22b48de1: Get rid of Key.needsSpecialPopupHint and related
* commit '22b48de11ce6f31a0edf90e1308073e67a7a2adb': Get rid of Key.needsSpecialPopupHint and related
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index f24dc3fe3..64bd506f5 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -344,9 +344,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
if (inputView == null) return;
final Keyboard keyboard = inputView.getKeyboard();
if (keyboard instanceof LatinKeyboard && keyboard == oldKeyboard) {
+ inputView.updateSpacebar();
final Key updatedKey = ((LatinKeyboard)keyboard).updateSpacebarLanguage(
fadeFactor,
- Utils.hasMultipleEnabledIMEsOrSubtypes(true /* include aux subtypes */),
SubtypeSwitcher.getInstance().needsToDisplayLanguage(keyboard.mId.mLocale));
inputView.invalidateKey(updatedKey);
}