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

Commit 2d3e5d4e authored by Jagrut Desai's avatar Jagrut Desai Committed by Android (Google) Code Review
Browse files

Merge "Correcting Logic of touch ouside of container." into main

parents c225b99b 6d34ffde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2290,7 +2290,7 @@ public final class LauncherInstrumentation {
            int bottomBound = Math.min(
                    containerBounds.bottom,
                    getRealDisplaySize().y - getImeInsets().bottom);
            int y = (bottomBound + containerBounds.top) / 2;
            int y = (bottomBound - containerBounds.top) / 2;
            // Do not tap in the status bar.
            y = Math.max(y, getWindowInsets().top);