summaryrefslogtreecommitdiffstats
path: root/src_pd/com
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-07-30 00:27:30 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-07-30 00:27:32 +0000
commit7d1433ac9191fa7b7c79a0187d4d0f30c16f84d9 (patch)
tree65d8333c09b01b1104d1dcd64e5a8f7a7d1430a5 /src_pd/com
parent9ef9925131835743f5316393758c14532c06277d (diff)
parent52e9277b6774bc938a9e55694640c20e4ba90365 (diff)
downloadandroid_packages_apps_Snap-7d1433ac9191fa7b7c79a0187d4d0f30c16f84d9.tar.gz
android_packages_apps_Snap-7d1433ac9191fa7b7c79a0187d4d0f30c16f84d9.tar.bz2
android_packages_apps_Snap-7d1433ac9191fa7b7c79a0187d4d0f30c16f84d9.zip
Merge "add Grad filter" into gb-ub-photos-carlsbad
Diffstat (limited to 'src_pd/com')
-rw-r--r--src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
index 2a39b688f..ab85110fe 100644
--- a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
+++ b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
@@ -24,6 +24,7 @@ import com.android.gallery3d.filtershow.editors.EditorZoom;
public class EditorManager {
public static void addEditors(EditorPlaceHolder editorPlaceHolder) {
+ editorPlaceHolder.addEditor(new EditorGrad());
editorPlaceHolder.addEditor(new EditorZoom());
editorPlaceHolder.addEditor(new EditorCurves());
editorPlaceHolder.addEditor(new EditorTinyPlanet());