Commit 215b416c authored by Adam Cohen's avatar Adam Cohen
Browse files

Fix an error that is not being expressed

Change-Id: I8c3488906b5b95aaf20b996f488ff01bad76300c
parent 5a0f45fe
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment