diff options
author | 2010-09-23 04:11:38 -0700 | |
---|---|---|
committer | 2010-09-23 04:11:38 -0700 | |
commit | bc63621fcf1db2933f708bf3dd81b2b2f2211c5e (patch) | |
tree | 4f079cc13f80bd0d41bdfa7dbdd7e8f5b755af72 /java/src | |
parent | ec8b7360161f37d00d178bef37c30352982cd007 (diff) | |
parent | 9d44411a82f93e46b4691b446163aa0c77a20e87 (diff) | |
download | latinime-bc63621fcf1db2933f708bf3dd81b2b2f2211c5e.tar.gz latinime-bc63621fcf1db2933f708bf3dd81b2b2f2211c5e.tar.xz latinime-bc63621fcf1db2933f708bf3dd81b2b2f2211c5e.zip |
am 9d44411a: Fixed popup mini-keyboard position
Merge commit '9d44411a82f93e46b4691b446163aa0c77a20e87' into gingerbread-plus-aosp
* commit '9d44411a82f93e46b4691b446163aa0c77a20e87':
Fixed popup mini-keyboard position
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java index 92266c5f1..eeccb965c 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java @@ -1129,7 +1129,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx if (isNumberAtLeftmost) { popupX -= container.getPaddingLeft(); } else { - popupX += popupKey.width + container.getPaddingLeft(); + popupX += popupKey.width + getPaddingLeft(); popupX -= container.getMeasuredWidth(); popupX += container.getPaddingRight(); } |