diff options
author | 2013-10-08 10:14:40 +0000 | |
---|---|---|
committer | 2013-10-08 10:14:41 +0000 | |
commit | 92190d9a756b7bad95648075828b23e61340358d (patch) | |
tree | 51333d9a85ed5f938b9b7719727897ecd4e03049 /java/src | |
parent | 2d3e121014a97b7de90f287f1ef82fa98f37007c (diff) | |
parent | 482aa129e4fa104708601672c9eff674d0a79cd4 (diff) | |
download | latinime-92190d9a756b7bad95648075828b23e61340358d.tar.gz latinime-92190d9a756b7bad95648075828b23e61340358d.tar.xz latinime-92190d9a756b7bad95648075828b23e61340358d.zip |
Merge "Show the keyboard earlier when rotating."
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 4d7e43e17..bdf7a9d29 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -926,10 +926,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen suggest.setAutoCorrectionThreshold(currentSettingsValues.mAutoCorrectionThreshold); } - if (canReachInputConnection) { - // If we can't reach the input connection, we don't want to call loadKeyboard yet. - // It will be done in #retryResetCaches. - switcher.loadKeyboard(editorInfo, currentSettingsValues); + switcher.loadKeyboard(editorInfo, currentSettingsValues); + if (!canReachInputConnection) { + // If we can't reach the input connection, we will call loadKeyboard again later, + // so we need to save its state now. The call will be done in #retryResetCaches. + switcher.saveKeyboardState(); } } else if (restarting) { // TODO: Come up with a more comprehensive way to reset the keyboard layout when |