aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2010-09-23 04:11:38 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-23 04:11:38 -0700
commitbc63621fcf1db2933f708bf3dd81b2b2f2211c5e (patch)
tree4f079cc13f80bd0d41bdfa7dbdd7e8f5b755af72 /java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
parentec8b7360161f37d00d178bef37c30352982cd007 (diff)
parent9d44411a82f93e46b4691b446163aa0c77a20e87 (diff)
downloadlatinime-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/com/android/inputmethod/latin/LatinKeyboardBaseView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java2
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();
}