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

Commit ac0c1c6f authored by Selim Cinek's avatar Selim Cinek Committed by Android Git Automerger
Browse files

am 1690ec8e: Merge "Fixed a bug where the notifications would jump when going...

am 1690ec8e: Merge "Fixed a bug where the notifications would jump when going to the full shade" into mnc-dev

* commit '1690ec8e':
  Fixed a bug where the notifications would jump when going to the full shade
parents c1999832 1690ec8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -582,7 +582,7 @@ public class StackScrollAlgorithm {
            return row.getIntrinsicHeight();
        } else if (child instanceof ExpandableView) {
            ExpandableView expandableView = (ExpandableView) child;
            return expandableView.getActualHeight();
            return expandableView.getIntrinsicHeight();
        }
        return child == null? mCollapsedSize : child.getHeight();
    }