summaryrefslogtreecommitdiffstats
path: root/src/com
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
commitce54df0c34bd0d8472e2c1fea4da1e0a9d8fd657 (patch)
tree7044bd77558542c8aa5e4640477069dfe622586c /src/com
parentb9974cb7e9f117c639399c3b13823e13be47f18e (diff)
downloadandroid_packages_apps_Snap-ce54df0c34bd0d8472e2c1fea4da1e0a9d8fd657.tar.gz
android_packages_apps_Snap-ce54df0c34bd0d8472e2c1fea4da1e0a9d8fd657.tar.bz2
android_packages_apps_Snap-ce54df0c34bd0d8472e2c1fea4da1e0a9d8fd657.zip
Switch back to old crop
Bug: 8950255 Change-Id: I3f78901e65a17a1d5867d3f76a6031cff5f65fed
Diffstat (limited to 'src/com')
-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;
}