Add comment about an earlier All Apps bug fix

(earlier change was Icfdb096c: Fix bug where only holo outlines were visible in All Apps sometimes)
This commit is contained in:
Michael Jurka
2011-02-16 18:02:45 -08:00
parent a88b213087
commit a40829a4a8
+5
View File
@@ -546,6 +546,11 @@ public abstract class PagedView extends ViewGroup {
alpha = 1.0f;
}
// Due to the way we're setting alpha on our children in PagedViewCellLayout,
// this optimization causes alpha to not be properly updated sometimes (repro
// case: in xlarge mode, swipe to second page in All Apps, then click on "My
// Apps" tab. the page will have alpha 0 until you swipe it). Removing
// optimization fixes the issue, but we should fix this in a better manner
//if (Float.compare(alpha, layout.getAlpha()) != 0) {
layout.setAlpha(alpha);
//}