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

Commit 5432938b 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

* commit 'c152dacc':
  Fixed a crash with notification groups

Change-Id: I6f36c1dae68de0e4741ee74910696869c21b86ec
parents d958f83a c152dacc
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();
        }
    }