diff options
author | Joe Onorato <joeo@android.com> | 2009-11-02 10:42:02 -0500 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2009-11-02 10:45:15 -0500 |
commit | a4c0cb965575b7a0832d92bc0b33e06c7c66cb10 (patch) | |
tree | 62c49b2baea18e796883dfe9b27b8f2bae4a7e21 /src/com | |
parent | b6341e9ee293cfbccc553f0d204a1087968d6482 (diff) | |
download | packages_apps_trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.zip packages_apps_trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.tar.gz packages_apps_trebuchet-a4c0cb965575b7a0832d92bc0b33e06c7c66cb10.tar.bz2 |
Tweak the shape/size of the all apps selection glow.
Bug 2231227
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/android/launcher2/Utilities.java | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ 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 { |