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

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

Fix clock alpha when awake

Test: manual
Test: atest KeyguardClockPositionAlgorithmTest
Fixes: 141545917
Change-Id: I961a208313f7697913c90e8d0eedb8c940a29b04
parent 305a6bd1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ public class KeyguardClockPositionAlgorithm {
     * @return Alpha from 0 to 1.
     */
    private float getClockAlpha(int y) {
        float alphaKeyguard = Math.max(0, y / Math.max(1f, getExpandedPreferredClockY()));
        float alphaKeyguard = Math.max(0, y / Math.max(1f, getClockY(1f)));
        alphaKeyguard = Interpolators.ACCELERATE.getInterpolation(alphaKeyguard);
        return MathUtils.lerp(alphaKeyguard, 1f, mDarkAmount);
    }