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

Commit 846718a7 authored by Vadim Tryshev's avatar Vadim Tryshev
Browse files

Removing magic constant 0.1f from Overview

Bug: 110103162
Test: TaplTests suite
Change-Id: If3af510360158a2c2b1c3d13c75321c49ece67e2
parent 431ec79c
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -93,13 +93,10 @@ public final class Overview extends LauncherInstrumentation.VisibleContainer {
    public AllAppsFromOverview switchToAllApps() {
        verifyActiveContainer();

        // Swipe from the hotseat to near the top, e.g. 10% of the screen.
        final UiObject2 predictionRow = mLauncher.waitForLauncherObject(
                "prediction_row");
        final Point start = predictionRow.getVisibleCenter();
        final int endY = (int) (mLauncher.getDevice().getDisplayHeight() * 0.1f);
        mLauncher.swipe(
                start.x, start.y, start.x, endY);
        // Swipe from navbar to the top.
        final UiObject2 navBar = mLauncher.getSystemUiObject("navigation_bar_frame");
        final Point start = navBar.getVisibleCenter();
        mLauncher.swipe(start.x, start.y, start.x, 0);

        return new AllAppsFromOverview(mLauncher);
    }