diff options
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java index 76d285007d1c..68ad4fad31c1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java @@ -1685,13 +1685,11 @@ public class ExpandableNotificationRow extends ActivatableNotificationView } if (notificationRowTransparency() && mBackgroundNormal != null) { if (NotificationBundleUi.isEnabled() && mEntryAdapter != null) { - mBackgroundNormal.setBgIsColorized( - usesTransparentBackground() && mEntryAdapter.isColorized()); + mBackgroundNormal.setBgIsColorized(mEntryAdapter.isColorized()); } else { if (mEntry != null) { mBackgroundNormal.setBgIsColorized( - usesTransparentBackground() - && mEntry.getSbn().getNotification().isColorized()); + mEntry.getSbn().getNotification().isColorized()); } } } |