summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2012-10-17 15:11:53 -0700
committernicolasroard <nicolasroard@google.com>2012-10-17 15:43:51 -0700
commit24fc5f1dd7a3a99e04e1e7f0d54d9ec1e777145d (patch)
tree31c23b629d0fa8b7beacddb58611514af4b026aa /src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java
parentd4f457e0133bac5e3b172a1261a36ff62c39953c (diff)
downloadandroid_packages_apps_Snap-24fc5f1dd7a3a99e04e1e7f0d54d9ec1e777145d.tar.gz
android_packages_apps_Snap-24fc5f1dd7a3a99e04e1e7f0d54d9ec1e777145d.tar.bz2
android_packages_apps_Snap-24fc5f1dd7a3a99e04e1e7f0d54d9ec1e777145d.zip
Fix back button behaviour
bug:7290000 bug:7256201 Change-Id: Ia6f5726b0602c45e98566bcb5e027686e7f2fe57
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java b/src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java
index 3649d28fa..66dad7881 100644
--- a/src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java
+++ b/src/com/android/gallery3d/filtershow/filters/ImageFilterParametricBorder.java
@@ -31,6 +31,11 @@ public class ImageFilterParametricBorder extends ImageFilter {
}
@Override
+ public boolean isNil() {
+ return false;
+ }
+
+ @Override
public boolean same(ImageFilter filter) {
boolean isBorderFilter = super.same(filter);
if (!isBorderFilter) {