am a4c0cb96: Tweak the shape/size of the all apps selection glow.
Merge commit 'a4c0cb965575b7a0832d92bc0b33e06c7c66cb10' into eclair-mr2
* commit 'a4c0cb965575b7a0832d92bc0b33e06c7c66cb10':
Tweak the shape/size of the all apps selection glow.
diff --git a/src/com/android/launcher2/Utilities.java b/src/com/android/launcher2/Utilities.java
index 5aeef9b..dc095f9 100644
--- a/src/com/android/launcher2/Utilities.java
+++ b/src/com/android/launcher2/Utilities.java
@@ -338,9 +338,9 @@
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 {