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

Commit c152dacc authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

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


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