From 7d284a29fdd2a97e67c4779fac8b75f0052fe9e6 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Fri, 12 Jun 2020 17:53:22 -0700 Subject: [PATCH] Fading in edit button much later It was causing overlap with the rest of the items, so we're fading it later now. Bug: 157175224 Test: visual, expand panel, observe no overlap Change-Id: I757a3d69fc0cc941eab33279ea85ec9f1e7b547a --- packages/SystemUI/src/com/android/systemui/qs/QSFooterImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/qs/QSFooterImpl.java b/packages/SystemUI/src/com/android/systemui/qs/QSFooterImpl.java index fc8e36ff22cf4..c4bb4e86e41e4 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QSFooterImpl.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QSFooterImpl.java @@ -218,7 +218,7 @@ public class QSFooterImpl extends FrameLayout implements QSFooter, .addFloat(mActionsContainer, "alpha", 0, 1) .addFloat(mEditContainer, "alpha", 0, 1) .addFloat(mPageIndicator, "alpha", 0, 1) - .setStartDelay(0.15f) + .setStartDelay(0.9f) .build(); }