summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java')
-rw-r--r--src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java b/src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java
index a3fc5aab4..d4e66edf8 100644
--- a/src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java
+++ b/src/com/android/gallery3d/filtershow/editors/ImageOnlyEditor.java
@@ -26,7 +26,7 @@ import com.android.gallery3d.filtershow.imageshow.ImageShow;
* The editor with no slider for filters without UI
*/
public class ImageOnlyEditor extends Editor {
- public static int ID = R.id.imageOnlyEditor;
+ public final static int ID = R.id.imageOnlyEditor;
private final String LOGTAG = "ImageOnlyEditor";
public ImageOnlyEditor() {
@@ -37,6 +37,10 @@ public class ImageOnlyEditor extends Editor {
super(id);
}
+ public boolean useUtilityPanel() {
+ return false;
+ }
+
@Override
public void createEditor(Context context, FrameLayout frameLayout) {
super.createEditor(context, frameLayout);