diff options
author | 2025-03-13 11:31:12 -0700 | |
---|---|---|
committer | 2025-03-13 11:31:12 -0700 | |
commit | cfe6940d65597cfb2b9cfd47d881bdcee9f6f21d (patch) | |
tree | 0d5ca14f2fee7a7c2627bf9348c0d14d7dc3c49e | |
parent | c2e7ada4504d2f8e963d074b0b2d12b36226e80a (diff) | |
parent | 6447c38e57068bb53b9ea9ec20ba6f7e28db9cee (diff) |
Merge "Enable group child bg fix when redesign flag is on" into main
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java | 3 |
1 files changed, 2 insertions, 1 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 256d549dc880..2a3b266c8d10 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 @@ -4011,7 +4011,8 @@ public class ExpandableNotificationRow extends ActivatableNotificationView } } else if (isChildInGroup()) { final int childColor = getShowingLayout().getBackgroundColorForExpansionState(); - if (Flags.notificationRowTransparency() && childColor == Color.TRANSPARENT) { + if ((Flags.notificationRowTransparency() || notificationsRedesignTemplates()) + && childColor == Color.TRANSPARENT) { // If child is not customizing its background color, switch from the parent to // the child background when the expansion finishes. mShowNoBackground = !mNotificationParent.mShowNoBackground; |