summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/category
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-06-11 19:37:43 -0700
committernicolasroard <nicolasroard@google.com>2013-06-11 19:39:22 -0700
commit5c57134ef2636f452bd6ec907d6510840390d982 (patch)
tree09c07708464d9173e92fd60d84be5ca3ad1cc065 /src/com/android/gallery3d/filtershow/category
parent13c3b46032990be905c885f38b9590ab19bd9398 (diff)
downloadandroid_packages_apps_Gallery2-5c57134ef2636f452bd6ec907d6510840390d982.tar.gz
android_packages_apps_Gallery2-5c57134ef2636f452bd6ec907d6510840390d982.tar.bz2
android_packages_apps_Gallery2-5c57134ef2636f452bd6ec907d6510840390d982.zip
Fix icon sizes and jaggies
bug:9105608 bug:8791729 Change-Id: I828e9d4daf4025f53d505a3412c27dd8c54a607e
Diffstat (limited to 'src/com/android/gallery3d/filtershow/category')
-rw-r--r--src/com/android/gallery3d/filtershow/category/Action.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/filtershow/category/Action.java b/src/com/android/gallery3d/filtershow/category/Action.java
index 506b2bf0f..b46147961 100644
--- a/src/com/android/gallery3d/filtershow/category/Action.java
+++ b/src/com/android/gallery3d/filtershow/category/Action.java
@@ -134,7 +134,7 @@ public class Action implements RenderingRequestCaller {
m.mapRect(image);
m.setRectToRect(image, frame, Matrix.ScaleToFit.FILL);
Canvas canvas = new Canvas(destination);
- canvas.drawBitmap(source, m, new Paint());
+ canvas.drawBitmap(source, m, new Paint(Paint.FILTER_BITMAP_FLAG));
}
@Override