Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f96c5fd4 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed a crash with notification groups" into nyc-dev am: c152dacc

am: 5432938b

* commit '5432938b':
  Fixed a crash with notification groups

Change-Id: Id90f5d886d1019871172f0f7262f818e9fb2c36a
parents be2da62d 5432938b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1097,7 +1097,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView {
            mIsSystemExpanded = expand;
            notifyHeightChanged(false /* needsAnimation */);
            logExpansionEvent(false, wasExpanded);
            if (mChildrenContainer != null) {
            if (mIsSummaryWithChildren) {
                mChildrenContainer.updateGroupOverflow();
            }
        }
@@ -1172,7 +1172,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView {
    }

    public void updateChildrenHeaderAppearance() {
        if (mChildrenContainer != null) {
        if (mIsSummaryWithChildren) {
            mChildrenContainer.updateChildrenHeaderAppearance();
        }
    }