diff options
author | 2011-12-18 08:13:36 +0900 | |
---|---|---|
committer | 2011-12-18 19:07:12 +0900 | |
commit | 4112dc05002d7a880e558418639cf25c4bd02a5a (patch) | |
tree | 5649a1746cb911cf902cda92319553b9b540f501 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 7bd714c086a78e2058543b0971ac92f5a30b2362 (diff) | |
download | latinime-4112dc05002d7a880e558418639cf25c4bd02a5a.tar.gz latinime-4112dc05002d7a880e558418639cf25c4bd02a5a.tar.xz latinime-4112dc05002d7a880e558418639cf25c4bd02a5a.zip |
Move spacebar drawing code from LatinKeyboard to LatinKeyboardView
Also this change moves LatinKeyboard attributes,
autoCorrectionSpacebarLedEnabled, autoCorrectionSpacebarLedIcon,
spacebarTextRatio, spacebarTextColor, and spacebarTextShadowColor to
LatinKeyboardView.
Change-Id: I7cc27ce1fc550e9f620a9ed0fbe4b8172902d5a1
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 64bd506f5..c868f14fc 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -344,11 +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, - SubtypeSwitcher.getInstance().needsToDisplayLanguage(keyboard.mId.mLocale)); - inputView.invalidateKey(updatedKey); + inputView.updateSpacebar(fadeFactor, + SubtypeSwitcher.getInstance().needsToDisplayLanguage( + keyboard.mId.mLocale)); } } |