Merge "Tiny fix in CellLayout"

This commit is contained in:
Adam Cohen
2011-04-26 16:51:19 -07:00
committed by Android (Google) Code Review
+1 -1
View File
@@ -853,7 +853,7 @@ public class CellLayout extends ViewGroup {
int count = getChildCount();
for (int i = 0; i < count; i++) {
View child = getChildAt(i);
child.layout(mLeftPadding, mTopPadding, r - mRightPadding , b - mBottomPadding);
child.layout(mLeftPadding, mTopPadding, r - l - mRightPadding , b - t - mBottomPadding);
}
}