summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/PagedView.java
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-02-16 18:02:45 -0800
committerMichael Jurka <mikejurka@google.com>2011-02-16 18:04:17 -0800
commita40829a4a86294237f5ea665e670ee100d9c02e5 (patch)
tree95230ebf392018c91ce64f670bb9a882d620abbb /src/com/android/launcher2/PagedView.java
parenta88b213087ea46060bbbebbae52e069b873f3097 (diff)
downloadandroid_packages_apps_Trebuchet-a40829a4a86294237f5ea665e670ee100d9c02e5.tar.gz
android_packages_apps_Trebuchet-a40829a4a86294237f5ea665e670ee100d9c02e5.tar.bz2
android_packages_apps_Trebuchet-a40829a4a86294237f5ea665e670ee100d9c02e5.zip
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)
Diffstat (limited to 'src/com/android/launcher2/PagedView.java')
-rw-r--r--src/com/android/launcher2/PagedView.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/android/launcher2/PagedView.java b/src/com/android/launcher2/PagedView.java
index cb952356b..159e821d5 100644
--- a/src/com/android/launcher2/PagedView.java
+++ b/src/com/android/launcher2/PagedView.java
@@ -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);
//}