aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-07-19 18:13:22 -0700
committerTadashi G. Takaoka <takaoka@google.com>2011-07-19 18:13:22 -0700
commit89bb88f61cc185ece678d6921803b373ce5fd2e7 (patch)
tree6919cd70029fef2e13be89dc34d0216d5c61f58a /java/src
parent40f7efc172928bdd6048e91421a766abe5b22996 (diff)
downloadlatinime-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')
-rw-r--r--java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java3
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);