commit | 8deb1e6a17900253708fad73016db05851b8d822 | [log] [tgz] |
---|---|---|
author | Michael Jurka <mikejurka@google.com> | Tue Jan 25 16:27:43 2011 -0800 |
committer | Michael Jurka <mikejurka@google.com> | Tue Jan 25 17:17:57 2011 -0800 |
tree | b1d78d51e996b4192e66b4c286c94e711092f517 | |
parent | 8c920dd3683d752aa4c43e964831ce53f9b72887 [diff] [blame] |
fix render glitch for "digest" animation when items are added to a new screen
diff --git a/src/com/android/launcher2/CellLayout.java b/src/com/android/launcher2/CellLayout.java index 9c629ee..0d774c9 100644 --- a/src/com/android/launcher2/CellLayout.java +++ b/src/com/android/launcher2/CellLayout.java
@@ -308,6 +308,9 @@ if (scaleFactor != mGlowBackgroundScale) { mGlowBackgroundScale = scaleFactor; updateGlowRect(); + if (getParent() != null) { + ((View) getParent()).invalidate(); + } } }