summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/ui
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2013-05-16 15:18:50 -0700
committerJohn Reck <jreck@google.com>2013-05-16 15:18:50 -0700
commit1bfe7cb96a5a042f238d048eda771169d6ad93ac (patch)
treeffcb4b2bce820d22267eae992c39478160bc526d /src/com/android/gallery3d/ui
parent75084da1b34e0ff9f269b5409d206c213532edbc (diff)
downloadandroid_packages_apps_Gallery2-1bfe7cb96a5a042f238d048eda771169d6ad93ac.tar.gz
android_packages_apps_Gallery2-1bfe7cb96a5a042f238d048eda771169d6ad93ac.tar.bz2
android_packages_apps_Gallery2-1bfe7cb96a5a042f238d048eda771169d6ad93ac.zip
Switch back to old crop
Bug: 8950255 Change-Id: I3f78901e65a17a1d5867d3f76a6031cff5f65fed
Diffstat (limited to 'src/com/android/gallery3d/ui')
-rw-r--r--src/com/android/gallery3d/ui/MenuExecutor.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/gallery3d/ui/MenuExecutor.java b/src/com/android/gallery3d/ui/MenuExecutor.java
index e5e77beb4..8f4854e10 100644
--- a/src/com/android/gallery3d/ui/MenuExecutor.java
+++ b/src/com/android/gallery3d/ui/MenuExecutor.java
@@ -36,7 +36,7 @@ import com.android.gallery3d.data.DataManager;
import com.android.gallery3d.data.MediaItem;
import com.android.gallery3d.data.MediaObject;
import com.android.gallery3d.data.Path;
-import com.android.gallery3d.filtershow.FilterShowActivity;
+import com.android.gallery3d.filtershow.crop.CropActivity;
import com.android.gallery3d.util.Future;
import com.android.gallery3d.util.GalleryUtils;
import com.android.gallery3d.util.ThreadPool.Job;
@@ -237,8 +237,7 @@ public class MenuExecutor {
}
return;
case R.id.action_crop: {
- Intent intent = getIntentBySingleSelectedPath(FilterShowActivity.CROP_ACTION)
- .setClass((Activity) mActivity, FilterShowActivity.class);
+ Intent intent = getIntentBySingleSelectedPath(CropActivity.CROP_ACTION);
((Activity) mActivity).startActivity(intent);
return;
}