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

This commit is contained in:
Selim Cinek
2015-05-05 23:53:58 +00:00
committed by Android (Google) Code Review

View File

@@ -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();
}