summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/FilterShowActivity.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-08-02 00:49:20 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-08-02 00:49:20 +0000
commit327427fb74916af4d9803068ef97bbd69573ed30 (patch)
tree29aa8aaf342025282111e311b3a6f03d4bca1196 /src/com/android/gallery3d/filtershow/FilterShowActivity.java
parent962f9f022ae9e26a52c69e3a52e09fa0f297df71 (diff)
parentbc8e077e77cf6f0dda8efd8318b8a8e7eda16f61 (diff)
downloadandroid_packages_apps_Gallery2-327427fb74916af4d9803068ef97bbd69573ed30.tar.gz
android_packages_apps_Gallery2-327427fb74916af4d9803068ef97bbd69573ed30.tar.bz2
android_packages_apps_Gallery2-327427fb74916af4d9803068ef97bbd69573ed30.zip
Merge "add Per Channel Saturation" into gb-ub-photos-carlsbad
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());