am 806b0f3f: Fix use of drawing cache in Launcher.

Merge commit '806b0f3fbf02171c691b1f9d48e51a47760565b3'

* commit '806b0f3fbf02171c691b1f9d48e51a47760565b3':
  Fix use of drawing cache in Launcher.
This commit is contained in:
Romain Guy 2009-06-29 20:19:54 -07:00 committed by The Android Open Source Project
commit ee21164548
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);
}
}