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

Commit fa129db8 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug on the notification appear animation

On the lockscreen the dimmed state was animated before when added
leading to a white flash of the background.

Change-Id: I78047c2d7be2f4b85a25a1bdefacbc944f775b53
parent c7400b0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ public class StackStateAnimator {
        }

        // start dimmed animation
        child.setDimmed(viewState.dimmed, mAnimationFilter.animateDimmed);
        child.setDimmed(viewState.dimmed, mAnimationFilter.animateDimmed && !wasAdded);

        // start dark animation
        child.setDark(viewState.dark, mAnimationFilter.animateDark);