diff options
author | 2009-03-25 16:58:32 -0700 | |
---|---|---|
committer | 2009-03-25 16:58:32 -0700 | |
commit | 808202b60fca5615220c98fbf0672bb34f32c1bb (patch) | |
tree | 378784e16487eb89be5b3ae8d2e2a3648cf8d751 /src | |
parent | 9e171bce3f8f4e61a30a6a931b794f1cea17391a (diff) | |
download | latinime-808202b60fca5615220c98fbf0672bb34f32c1bb.tar.gz latinime-808202b60fca5615220c98fbf0672bb34f32c1bb.tar.xz latinime-808202b60fca5615220c98fbf0672bb34f32c1bb.zip |
Automated import from //branches/donutburger/...@142718,142718
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/inputmethod/latin/LatinKeyboard.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/inputmethod/latin/LatinKeyboard.java b/src/com/android/inputmethod/latin/LatinKeyboard.java index 94b72b885..7720dfbe5 100644 --- a/src/com/android/inputmethod/latin/LatinKeyboard.java +++ b/src/com/android/inputmethod/latin/LatinKeyboard.java @@ -195,6 +195,10 @@ public class LatinKeyboard extends Keyboard { public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) { super(res, parent, x, y, parser); + if (popupCharacters != null && popupCharacters.length() == 0) { + // If there is a keyboard with no keys specified in popupCharacters + popupResId = 0; + } } void enableShiftLock() { |