Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9c822ec4 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am 6b75eaa1: Fix mini keyboard display position when preview is disabled

Merge commit '6b75eaa1' into gingerbread-plus-aosp

* commit '6b75eaa1':
  Fix mini keyboard display position when preview is disabled
parents 1d82ee9a 6b75eaa1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1119,7 +1119,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx
        popupY -= container.getMeasuredHeight();
        popupY += container.getPaddingBottom();
        final int x = popupX;
        final int y = isOneRowKeyboard(mMiniKeyboard.getKeyboard())
        final int y = mShowPreview && isOneRowKeyboard(mMiniKeyboard.getKeyboard())
                ? mPopupPreviewDisplayedY : popupY;

        int adjustedX = x;