diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java index 08a68bc8a9a7..7cc6ecd8cf62 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java @@ -266,10 +266,9 @@ public class QuickStatusBarHeader extends FrameLayout { private void updateAlphaAnimator() { TouchAnimator.Builder builder = new TouchAnimator.Builder() - // The following two views have to be hidden manually, so as not to hide the - // Privacy chip in QQS - .addFloat(mDateView, "alpha", 0, 1) .addFloat(mSecurityHeaderView, "alpha", 0, 1) + // These views appear on expanding down + .addFloat(mClockView, "alpha", 0, 1) .addFloat(mQSCarriers, "alpha", 0, 1) .setListener(new TouchAnimator.ListenerAdapter() { @Override |