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

Commit 8b2360ae authored by Lucas Dupin's avatar Lucas Dupin Committed by android-build-merger
Browse files

Merge "Fix issue where clock scale would be wrong in AOD" into oc-mr1-dev

am: 3edfdf34

Change-Id: I49871d0872e6b4f8194d3425a59cd5661b5623b7
parents 0cd12a83 3edfdf34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ public class KeyguardClockPositionAlgorithm {
        progress = Math.max(0.0f, Math.min(progress, 1.0f));
        progress = mAccelerateInterpolator.getInterpolation(progress);
        progress *= Math.pow(1 + mEmptyDragAmount / mDensity / 300, 0.3f);
        return progress;
        return interpolate(progress, 1, mDarkAmount);
    }

    private int getClockNotificationsPadding() {