Fix an error that is not being expressed

Change-Id: I8c3488906b5b95aaf20b996f488ff01bad76300c
This commit is contained in:
Adam Cohen
2012-08-30 13:14:08 -07:00
parent 5a0f45fe27
commit 215b416c1f
+1 -1
View File
@@ -1026,7 +1026,7 @@ public class CellLayout extends ViewGroup {
super.onSizeChanged(w, h, oldw, oldh);
mBackgroundRect.set(0, 0, w, h);
mForegroundRect.set(mForegroundPadding, mForegroundPadding,
w - 2 * mForegroundPadding, h - 2 * mForegroundPadding);
w - mForegroundPadding, h - mForegroundPadding);
}
@Override