aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-12-18 03:06:20 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-12-18 16:08:28 +0900
commit22b48de11ce6f31a0edf90e1308073e67a7a2adb (patch)
treec2d82e3595b481eba91133885aaaac66cfc18f15 /java/src/com/android/inputmethod/latin/LatinIME.java
parentbc781e963ff51576109aca9626728d09222cfca7 (diff)
downloadlatinime-22b48de11ce6f31a0edf90e1308073e67a7a2adb.tar.gz
latinime-22b48de11ce6f31a0edf90e1308073e67a7a2adb.tar.xz
latinime-22b48de11ce6f31a0edf90e1308073e67a7a2adb.zip
Get rid of Key.needsSpecialPopupHint and related
Change-Id: I28e87ea3af9581f12094770b42f113e9018886c4
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);
}