diff options
author | 2011-07-19 18:13:22 -0700 | |
---|---|---|
committer | 2011-07-19 18:13:22 -0700 | |
commit | 89bb88f61cc185ece678d6921803b373ce5fd2e7 (patch) | |
tree | 6919cd70029fef2e13be89dc34d0216d5c61f58a /java/src/com/android/inputmethod | |
parent | 40f7efc172928bdd6048e91421a766abe5b22996 (diff) | |
download | latinime-89bb88f61cc185ece678d6921803b373ce5fd2e7.tar.gz latinime-89bb88f61cc185ece678d6921803b373ce5fd2e7.tar.xz latinime-89bb88f61cc185ece678d6921803b373ce5fd2e7.zip |
Revert "Keep keyboard layout while orientation change"
This reverts commit 8ebbe03fed22da197fcdf152df8b815d9d816ac2.
Bug: 5037466
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java index bb21d7a63..7ad947c67 100644 --- a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java +++ b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java @@ -152,8 +152,7 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha boolean voiceButtonOnPrimary) { mSwitchState = SWITCH_STATE_ALPHA; try { - final boolean isSymbols = (mCurrentId != null) ? mCurrentId.isSymbolsKeyboard() : false; - loadKeyboardInternal(attribute, voiceKeyEnabled, voiceButtonOnPrimary, isSymbols); + loadKeyboardInternal(attribute, voiceKeyEnabled, voiceButtonOnPrimary, false); } catch (RuntimeException e) { // Get KeyboardId to record which keyboard has been failed to load. final KeyboardId id = getKeyboardId(attribute, false); |