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

Commit 2cec8160 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

am: 8b2360ae

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


    private int getClockNotificationsPadding() {
    private int getClockNotificationsPadding() {