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

Commit f1f270a0 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where the height of the group was wrong

This lead to very visible bugs.

Bug: 24866646
Change-Id: I62bfbb2f3895a5a69eb4807d109643bdfdf95351
parent ee2c7c7d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -640,7 +640,7 @@ public class NotificationChildrenContainer extends ViewGroup {
                firstChild = false;
            }
            ExpandableNotificationRow child = mChildren.get(i);
            minExpandHeight += child.getMinHeight();
            minExpandHeight += child.getSingleLineView().getHeight();
            visibleChildren++;
        }
        minExpandHeight += mCollapsedBottompadding;