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

Commit da3de5fa authored by Selim Cinek's avatar Selim Cinek Committed by Automerger Merge Worker
Browse files

Merge "Fixed an issue where notifications wouldn't animate on height change"...

Merge "Fixed an issue where notifications wouldn't animate on height change" into sc-dev am: cf3dbf7a am: ad4f48ba

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15080838

Change-Id: I8c59e066e1dbd3628520d8683f0454574cc4fdca
parents 58ba68a2 ad4f48ba
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2482,7 +2482,8 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        int intrinsicBefore = getIntrinsicHeight();
        super.onLayout(changed, left, top, right, bottom);
        if (intrinsicBefore != getIntrinsicHeight() && intrinsicBefore != 0) {
        if (intrinsicBefore != getIntrinsicHeight()
                && (intrinsicBefore != 0 || getActualHeight() > 0)) {
            notifyHeightChanged(true  /* needsAnimation */);
        }
        if (mMenuRow != null && mMenuRow.getMenuView() != null) {