diff options
author | 2009-09-09 06:19:01 -0700 | |
---|---|---|
committer | 2009-09-09 06:19:01 -0700 | |
commit | 64e245f60b82d609574b3975b23c7697c3d27ae9 (patch) | |
tree | e5ff7c1479f608948dd740df3b1702ad8f06da45 /src | |
parent | b50a1a3c913c142712f05d23a0384568e821948c (diff) | |
parent | d9688c77a95dc548c68d57ba2c6f30bb27fc69dc (diff) | |
download | latinime-64e245f60b82d609574b3975b23c7697c3d27ae9.tar.gz latinime-64e245f60b82d609574b3975b23c7697c3d27ae9.tar.xz latinime-64e245f60b82d609574b3975b23c7697c3d27ae9.zip |
Merge change 24211 into eclair
* changes:
Adjust the size of bottom row of keys for email mode. Fix for 2099889
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/inputmethod/latin/LatinIME.java b/src/com/android/inputmethod/latin/LatinIME.java index 49ae93e48..965656db2 100644 --- a/src/com/android/inputmethod/latin/LatinIME.java +++ b/src/com/android/inputmethod/latin/LatinIME.java @@ -209,6 +209,10 @@ public class LatinIME extends InputMethodService public void onConfigurationChanged(Configuration conf) { if (!TextUtils.equals(conf.locale.toString(), mLocale)) { initSuggest(conf.locale.toString()); + if (mKeyboardSwitcher == null) { + mKeyboardSwitcher = new KeyboardSwitcher(this); + } + mKeyboardSwitcher.makeKeyboards(); } // If orientation changed while predicting, commit the change if (conf.orientation != mOrientation) { |