Fix use of drawing cache in Launcher.

This commit is contained in:
Romain Guy 2009-06-26 16:57:39 -07:00
parent f280f202e9
commit 806b0f3fbf
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ public class CellLayout extends ViewGroup {
final View view = getChildAt(i);
view.setDrawingCacheEnabled(enabled);
// Update the drawing caches
view.buildDrawingCache();
view.buildDrawingCache(true);
}
}