diff options
author | 2014-08-22 07:42:28 +0000 | |
---|---|---|
committer | 2014-08-22 07:42:29 +0000 | |
commit | f429d8f138d7e9aed8cdae774bfc8854025d3a40 (patch) | |
tree | 5d9bb4058538d26ffde9c0f7388fabad074161ad /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 1b34985dcfb118eb06f3e286e5a160cd4aaddd6c (diff) | |
parent | 8ffe4bc9321e582a4d882f21e465d5886616f489 (diff) | |
download | latinime-f429d8f138d7e9aed8cdae774bfc8854025d3a40.tar.gz latinime-f429d8f138d7e9aed8cdae774bfc8854025d3a40.tar.xz latinime-f429d8f138d7e9aed8cdae774bfc8854025d3a40.zip |
Merge "[ML1] Introduce RichInputMethodSubtype"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index c44555eb2..64cc7ecc5 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -747,7 +747,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen public void onCurrentInputMethodSubtypeChanged(final InputMethodSubtype subtype) { // Note that the calling sequence of onCreate() and onCurrentInputMethodSubtypeChanged() // is not guaranteed. It may even be called at the same time on a different thread. - mSubtypeSwitcher.onSubtypeChanged(subtype); + final RichInputMethodSubtype richSubtype = new RichInputMethodSubtype(subtype); + mSubtypeSwitcher.onSubtypeChanged(richSubtype); mInputLogic.onSubtypeChanged(SubtypeLocaleUtils.getCombiningRulesExtraValue(subtype)); loadKeyboard(); } |