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

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

Merge "Fixed an issue where the panel height was wrong"

parents 7760cf49 f2495a7f
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -2213,12 +2213,15 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
    }

    public void resetUserExpansion() {
        boolean changed = mUserExpanded;
        boolean wasExpanded = isExpanded();
        mHasUserChangedExpansion = false;
        mUserExpanded = false;
        if (changed && mIsSummaryWithChildren) {
        if (wasExpanded != isExpanded()) {
            if (mIsSummaryWithChildren) {
                mChildrenContainer.onExpansionChanged();
            }
            notifyHeightChanged(false /* needsAnimation */);
        }
        updateShelfIconColor();
    }