summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/FilterShowActivity.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-07-30 14:40:18 -0700
committerJohn Hoford <hoford@google.com>2013-08-01 16:13:52 -0700
commit014bbe68d6e407269a0d843083be56f8df58adba (patch)
treeb3e8d645c4b01057044353340bdf3c24aaf65230 /src/com/android/gallery3d/filtershow/FilterShowActivity.java
parent203eb404a7cd6a80397535e63d22b3772939f03d (diff)
downloadandroid_packages_apps_Snap-014bbe68d6e407269a0d843083be56f8df58adba.tar.gz
android_packages_apps_Snap-014bbe68d6e407269a0d843083be56f8df58adba.tar.bz2
android_packages_apps_Snap-014bbe68d6e407269a0d843083be56f8df58adba.zip
add Per Channel Saturation
Change-Id: Icfd24c817674b81ac9caecc2d73348dc7734f037
Diffstat (limited to 'src/com/android/gallery3d/filtershow/FilterShowActivity.java')
-rw-r--r--src/com/android/gallery3d/filtershow/FilterShowActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/FilterShowActivity.java b/src/com/android/gallery3d/filtershow/FilterShowActivity.java
index f0b1aa8c2..ab508b6f2 100644
--- a/src/com/android/gallery3d/filtershow/FilterShowActivity.java
+++ b/src/com/android/gallery3d/filtershow/FilterShowActivity.java
@@ -59,6 +59,7 @@ import android.widget.Toast;
import com.android.gallery3d.R;
import com.android.gallery3d.app.PhotoPage;
import com.android.gallery3d.data.LocalAlbum;
+import com.android.gallery3d.filtershow.editors.EditorChanSat;
import com.android.gallery3d.filtershow.editors.EditorGrad;
import com.android.gallery3d.filtershow.data.FilterStackSource;
import com.android.gallery3d.filtershow.data.UserPresetsManager;
@@ -386,6 +387,7 @@ public class FilterShowActivity extends FragmentActivity implements OnItemClickL
}
private void fillEditors() {
+ mEditorPlaceHolder.addEditor(new EditorChanSat());
mEditorPlaceHolder.addEditor(new EditorGrad());
mEditorPlaceHolder.addEditor(new EditorDraw());
mEditorPlaceHolder.addEditor(new BasicEditor());