From 215b416c1f7cf0234b777155b823637a0902739f Mon Sep 17 00:00:00 2001 From: Adam Cohen Date: Thu, 30 Aug 2012 13:14:08 -0700 Subject: [PATCH] Fix an error that is not being expressed Change-Id: I8c3488906b5b95aaf20b996f488ff01bad76300c --- src/com/android/launcher2/CellLayout.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher2/CellLayout.java b/src/com/android/launcher2/CellLayout.java index d83fcac833..f742255cc0 100644 --- a/src/com/android/launcher2/CellLayout.java +++ b/src/com/android/launcher2/CellLayout.java @@ -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