diff options
author | 2010-09-23 00:05:15 -0700 | |
---|---|---|
committer | 2010-09-23 00:05:15 -0700 | |
commit | ec8b7360161f37d00d178bef37c30352982cd007 (patch) | |
tree | 773ddfdaf83c30a3286d9dddd0f15fce60824d1b /java/src | |
parent | a8f77c36ca985cb356b03b25f5cd30fd3b25dc9a (diff) | |
parent | 77542988b809fba6a59aa86982eb4d9e4269477e (diff) | |
download | latinime-ec8b7360161f37d00d178bef37c30352982cd007.tar.gz latinime-ec8b7360161f37d00d178bef37c30352982cd007.tar.xz latinime-ec8b7360161f37d00d178bef37c30352982cd007.zip |
am 77542988: Tune left and right padding of popup mini keyboard
Merge commit '77542988b809fba6a59aa86982eb4d9e4269477e' into gingerbread-plus-aosp
* commit '77542988b809fba6a59aa86982eb4d9e4269477e':
Tune left and right padding of popup mini keyboard
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 eeccb965c..92266c5f1 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 + getPaddingLeft(); + popupX += popupKey.width + container.getPaddingLeft(); popupX -= container.getMeasuredWidth(); popupX += container.getPaddingRight(); } |