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

Commit 8d5727f6 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where the notifications would jump when going to the full shade

Change-Id: I811f3cd543f0e69d06bfe692435c579b7844173e
parent 704b9f82
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();
    }