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

Commit 67fe05be authored by Pat Manning's avatar Pat Manning Committed by Android (Google) Code Review
Browse files

Merge "Remove scaling from spring loaded y translation." into tm-qpr-dev

parents b0f42f03 9fd69c0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ public class SpringLoadedState extends LauncherState {
        float myCenter = ws.getTop() + halfHeight;
        float cellTopFromCenter = halfHeight - ws.getChildAt(0).getTop();
        float actualCellTop = myCenter - cellTopFromCenter * scale;
        return new ScaleAndTranslation(scale, 0, (shrunkTop - actualCellTop) / scale);
        return new ScaleAndTranslation(scale, 0, shrunkTop - actualCellTop);
    }

    @Override