diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java index 5efbc99..494195e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java @@ -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); |
