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

Commit 4498fc47 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: bf11142c

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

Change-Id: I520415e49cccc48c5d26b460aa85ec804e6d9a50
parents ae7b7aa3 bf11142c
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();
        }
    }