Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19849052 authored by Alan Newberger's avatar Alan Newberger Committed by Android Git Automerger
Browse files

am 3d736418: Merge "Use basic editor for sharpen filter."

* commit '3d736418':
  Use basic editor for sharpen filter.
parents 6996a1fc 3d736418
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
    }