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

Commit 246117ab authored by Christine Franks's avatar Christine Franks Committed by Android (Google) Code Review
Browse files

Merge "Increase Night Display transition to 3 seconds"

parents 5b9b907a 7b83b428
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() {