diff options
| author | 2019-03-28 03:18:17 +0000 | |
|---|---|---|
| committer | 2019-03-28 03:18:17 +0000 | |
| commit | a9cb33dc885ade0c6e8b307c9ecb45a3959a1f8a (patch) | |
| tree | 810e18951efcff8f13538924e80083eb7f7b935b | |
| parent | b677f9684f81d5831f855289d6a0933a44c78555 (diff) | |
| parent | c14131667ff87c8891df30bcb8df80efd753f920 (diff) | |
Merge "Don't show notif icons in screen middle with custom clock"
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java index 520df9797cc3..ce206816bf1d 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java @@ -399,7 +399,7 @@ public class NotificationStackScrollLayout extends ViewGroup implements ScrollAd private final ViewOutlineProvider mOutlineProvider = new ViewOutlineProvider() { @Override public void getOutline(View view, Outline outline) { - if (mAmbientState.isDarkAtAll() && !mAmbientState.isFullyDark()) { + if (mAmbientState.isDarkAtAll() && !mAmbientState.isFullyDark() || !mShowDarkShelf) { outline.setRoundRect(mBackgroundAnimationRect, mCornerRadius); } else { ViewOutlineProvider.BACKGROUND.getOutline(view, outline); |