summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-02-08 14:37:35 -0800
committerJohn Hoford <hoford@google.com>2013-02-08 14:53:46 -0800
commitb4e6733731e751afe7dcf2a3b9803d2f720cb253 (patch)
treeb4bbe06d702f9a4d91de3efb3858f8841e7dcfd5 /src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java
parent0606108a8126b357772db415ad4517395fce8875 (diff)
downloadandroid_packages_apps_Snap-b4e6733731e751afe7dcf2a3b9803d2f720cb253.tar.gz
android_packages_apps_Snap-b4e6733731e751afe7dcf2a3b9803d2f720cb253.tar.bz2
android_packages_apps_Snap-b4e6733731e751afe7dcf2a3b9803d2f720cb253.zip
remove slider from FX and Border UI
Change-Id: Ic1c38734c4351ab0150b90d5d4fc575cce9db9e9
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java b/src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java
index 2fa4cfb16..ebc08f0b4 100644
--- a/src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java
+++ b/src/com/android/gallery3d/filtershow/filters/ImageFilterFx.java
@@ -18,6 +18,9 @@ package com.android.gallery3d.filtershow.filters;
import android.graphics.Bitmap;
+import com.android.gallery3d.filtershow.editors.BasicEditor;
+import com.android.gallery3d.filtershow.editors.ImageOnlyEditor;
+
public class ImageFilterFx extends ImageFilter {
private static final String TAG = "ImageFilterFx";
Bitmap fxBitmap;
@@ -57,6 +60,11 @@ public class ImageFilterFx extends ImageFilter {
}
@Override
+ public int getEditingViewId() {
+ return ImageOnlyEditor.ID;
+ }
+
+ @Override
public boolean showParameterValue() {
return false;
}