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

Commit a75afd6c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix PopupWindow's wrong location" into rvc-dev am: 4f4706de

Change-Id: I16234f709b455885be29b43a6d92b14cf3c2e76c
parents b95f96a2 4f4706de
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;
        }