summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java b/src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java
index 3bd794464..418afc40f 100644
--- a/src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java
+++ b/src/com/android/gallery3d/filtershow/filters/ImageFilterSharpen.java
@@ -17,6 +17,7 @@
package com.android.gallery3d.filtershow.filters;
import com.android.gallery3d.R;
+import com.android.gallery3d.filtershow.editors.BasicEditor;
public class ImageFilterSharpen extends ImageFilterRS {
private static final String SERIALIZATION_NAME = "SHARPEN";
@@ -36,7 +37,7 @@ public class ImageFilterSharpen extends ImageFilterRS {
representation.setFilterClass(ImageFilterSharpen.class);
representation.setTextId(R.string.sharpness);
representation.setOverlayId(R.drawable.filtershow_button_colors_sharpen);
- representation.setEditorId(R.id.imageShow);
+ representation.setEditorId(BasicEditor.ID);
representation.setSupportsPartialRendering(true);
return representation;
}