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

Commit ebf22a85 authored by Lucas Dupin's avatar Lucas Dupin
Browse files

Fix issue where clock scale would be wrong in AOD

Test: manual
Change-Id: I6591990705d59fa4fe21e8f88b202a9135145e8e
Fixes: 64814616
parent c6c9e089
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() {