* commit '2b33fc74b681fbdbb2bd0aee753753236d919f4b': Show the keyboard earlier when rotating.
This commit is contained in:
commit
5ff266e0b1
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue