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

Commit 7b83b428 authored by Christine Franks's avatar Christine Franks
Browse files

Increase Night Display transition to 3 seconds

Bug: 34287165
Test: manual - Night Display transitions to amber/transparent over
three seconds.

Change-Id: Ia39d162ffdafb5e8920a0e392dc913d849453169
parent 4bd54c70
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -74,6 +74,11 @@ public final class NightDisplayService extends SystemService
        0,      0,      0, 1
    };

    /**
     * The transition time, in milliseconds, for Night Display to turn on/off.
     */
    private static final long TRANSITION_DURATION = 3000L;

    /**
     * The identity matrix, used if one of the given matrices is {@code null}.
     */
@@ -285,8 +290,7 @@ public final class NightDisplayService extends SystemService

            mColorMatrixAnimator = ValueAnimator.ofObject(COLOR_MATRIX_EVALUATOR,
                    from == null ? MATRIX_IDENTITY : from, to == null ? MATRIX_IDENTITY : to);
            mColorMatrixAnimator.setDuration(getContext().getResources()
                    .getInteger(android.R.integer.config_longAnimTime));
            mColorMatrixAnimator.setDuration(TRANSITION_DURATION);
            mColorMatrixAnimator.setInterpolator(AnimationUtils.loadInterpolator(
                    getContext(), android.R.interpolator.fast_out_slow_in));
            mColorMatrixAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {