aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-10-09 21:26:37 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-09 21:26:37 -0700
commit5ff266e0b1d6fa1cc2b196c98ee0ed5d79e72a34 (patch)
treefef7f27ecb74b28420a155f73a3a532396769194 /java/src
parent5908917cff73544e463ebc684753648987f0edff (diff)
parent2b33fc74b681fbdbb2bd0aee753753236d919f4b (diff)
downloadlatinime-5ff266e0b1d6fa1cc2b196c98ee0ed5d79e72a34.tar.gz
latinime-5ff266e0b1d6fa1cc2b196c98ee0ed5d79e72a34.tar.xz
latinime-5ff266e0b1d6fa1cc2b196c98ee0ed5d79e72a34.zip
am 2b33fc74: am 17bec5cb: am 92190d9a: Merge "Show the keyboard earlier when rotating."
* commit '2b33fc74b681fbdbb2bd0aee753753236d919f4b': Show the keyboard earlier when rotating.
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java9
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