From d41abb252cd09daded7a1eb870c2bd74c8c5a137 Mon Sep 17 00:00:00 2001 From: Govinda Wasserman Date: Fri, 24 May 2019 14:15:30 -0400 Subject: [PATCH] Removes obsolete alpha modifications This is no longer needed and runs the risk of conflicting with alpha modifications performed in the new Assistant visualizations. Test: Tested locally BUG:133327495 Change-Id: I7b353520351513251db9792b7ab2f5c2690efead --- .../android/systemui/statusbar/phone/NotificationPanelView.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java index 9da75b64acdfd..7623dee10c39a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java @@ -1440,10 +1440,8 @@ public class NotificationPanelView extends PanelView implements } else if (statusBarState == StatusBarState.KEYGUARD || statusBarState == StatusBarState.SHADE_LOCKED) { mKeyguardBottomArea.setVisibility(View.VISIBLE); - mKeyguardBottomArea.setAlpha(1f); } else { mKeyguardBottomArea.setVisibility(View.GONE); - mKeyguardBottomArea.setAlpha(1f); } }