summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
diff options
context:
space:
mode:
authorYuli Huang <yuli@google.com>2011-10-20 09:28:07 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-10-20 09:28:07 -0700
commit773d368357ce50bc299551a768584d5a222fd440 (patch)
treee55ca306dcd687b81ce1aaa491179fd6de9494b4 /src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
parent64dbda50d5a05842b2f793bf6c0d3d9c88a7d587 (diff)
parent960647247705f2c3e375061d234424b71c286e4d (diff)
downloadandroid_packages_apps_Snap-773d368357ce50bc299551a768584d5a222fd440.tar.gz
android_packages_apps_Snap-773d368357ce50bc299551a768584d5a222fd440.tar.bz2
android_packages_apps_Snap-773d368357ce50bc299551a768584d5a222fd440.zip
am 7b62f488: Fix b/5401109.
* commit '7b62f4889a95406a00a4a5f25ef15f01322607eb': Fix b/5401109.
Diffstat (limited to 'src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java')
-rw-r--r--src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java b/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
index 2c697351d..3641828a6 100644
--- a/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
+++ b/src/com/android/gallery3d/photoeditor/actions/EffectToolFactory.java
@@ -90,6 +90,10 @@ public class EffectToolFactory {
return (TouchView) createFullscreenTool(R.layout.photoeditor_touch_view);
}
+ public FlipView createFlipView() {
+ return (FlipView) createFullscreenTool(R.layout.photoeditor_flip_view);
+ }
+
public RotateView createRotateView() {
return (RotateView) createFullscreenTool(R.layout.photoeditor_rotate_view);
}