summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-01-11 10:54:41 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-11 10:54:41 -0800
commite464aeb13a19cb1ad3845b3dcc319df3d7899e9f (patch)
tree05989779a14485bc9ac3b75d9cc50dcce44d69c5 /src/com
parentce93f7ebdb296846ba2f01b7eb3e69a3230f3025 (diff)
parent24232cc39912a1b4c53d5e4df69c29bff2ead49a (diff)
downloadpackages_apps_trebuchet-e464aeb13a19cb1ad3845b3dcc319df3d7899e9f.zip
packages_apps_trebuchet-e464aeb13a19cb1ad3845b3dcc319df3d7899e9f.tar.gz
packages_apps_trebuchet-e464aeb13a19cb1ad3845b3dcc319df3d7899e9f.tar.bz2
Merge "fix bug with alpha level of items on workspace" into honeycomb
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/launcher2/CellLayout.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/launcher2/CellLayout.java b/src/com/android/launcher2/CellLayout.java
index fd389ca..73e0c8f 100644
--- a/src/com/android/launcher2/CellLayout.java
+++ b/src/com/android/launcher2/CellLayout.java
@@ -625,6 +625,7 @@ public class CellLayout extends ViewGroup implements Dimmable, VisibilityChanged
child.setId(childId);
addView(child, index, lp);
+ child.setAlpha(getAlpha());
if (child instanceof VisibilityChangedBroadcaster) {
VisibilityChangedBroadcaster v = (VisibilityChangedBroadcaster) child;
v.setVisibilityChangedListener(this);