summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/Utilities.java
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2009-11-02 10:42:02 -0500
committerJoe Onorato <joeo@android.com>2009-11-02 10:45:15 -0500
commita4c0cb965575b7a0832d92bc0b33e06c7c66cb10 (patch)
tree62c49b2baea18e796883dfe9b27b8f2bae4a7e21 /src/com/android/launcher2/Utilities.java
parentb6341e9ee293cfbccc553f0d204a1087968d6482 (diff)
downloadandroid_packages_apps_Trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.tar.gz
android_packages_apps_Trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.tar.bz2
android_packages_apps_Trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.zip
Tweak the shape/size of the all apps selection glow.
Bug 2231227
Diffstat (limited to 'src/com/android/launcher2/Utilities.java')
-rw-r--r--src/com/android/launcher2/Utilities.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher2/Utilities.java b/src/com/android/launcher2/Utilities.java
index 5aeef9bd5..dc095f9d1 100644
--- a/src/com/android/launcher2/Utilities.java
+++ b/src/com/android/launcher2/Utilities.java
@@ -338,9 +338,9 @@ final class Utilities {
sIconWidth = sIconHeight = (int) resources.getDimension(android.R.dimen.app_icon_size);
sIconTextureWidth = sIconTextureHeight = roundToPow2(sIconWidth);
- sBlurPaint.setMaskFilter(new BlurMaskFilter(4 * density, BlurMaskFilter.Blur.NORMAL));
+ sBlurPaint.setMaskFilter(new BlurMaskFilter(5 * density, BlurMaskFilter.Blur.NORMAL));
sGlowColorPaint.setColor(0xffff9000);
- sGlowColorPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 64));
+ sGlowColorPaint.setMaskFilter(TableMaskFilter.CreateClipTable(0, 30));
}
static class BubbleText {