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

Commit 4f4706de authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix PopupWindow's wrong location" into rvc-dev

parents 31ddf754 4ebacd3a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1818,7 +1818,7 @@ public class PopupWindow {
        final int winOffsetY = screenLocationY - drawingLocationY;
        final int anchorTopInScreen = outParams.y + winOffsetY;
        final int spaceBelow = displayFrameBottom - anchorTopInScreen;
        if (anchorTopInScreen >= 0 && height <= spaceBelow) {
        if (anchorTopInScreen >= displayFrameTop && height <= spaceBelow) {
            return true;
        }

@@ -1880,7 +1880,7 @@ public class PopupWindow {
        final int winOffsetX = screenLocationX - drawingLocationX;
        final int anchorLeftInScreen = outParams.x + winOffsetX;
        final int spaceRight = displayFrameRight - anchorLeftInScreen;
        if (anchorLeftInScreen >= 0 && width <= spaceRight) {
        if (anchorLeftInScreen >= displayFrameLeft && width <= spaceRight) {
            return true;
        }