diff options
author | repo sync <raychen@google.com> | 2009-06-17 14:04:41 +0800 |
---|---|---|
committer | repo sync <raychen@google.com> | 2009-06-18 13:33:14 +0800 |
commit | 5e06e3fb8dd3d0ed01d6ab7a6b769ff9d8fb7c4f (patch) | |
tree | ff2e9fc13f423bf99fac842ff811e387b5499789 /src/com/android/camera | |
parent | 4fc134dffebaddec5bcdb26dc1caeb4ab6f7f91c (diff) | |
download | LegacyCamera-5e06e3fb8dd3d0ed01d6ab7a6b769ff9d8fb7c4f.zip LegacyCamera-5e06e3fb8dd3d0ed01d6ab7a6b769ff9d8fb7c4f.tar.gz LegacyCamera-5e06e3fb8dd3d0ed01d6ab7a6b769ff9d8fb7c4f.tar.bz2 |
Fix issue 1921166: Cropped image is not displayed after cropping a picture from Gallery picture view.
Diffstat (limited to 'src/com/android/camera')
-rw-r--r-- | src/com/android/camera/ViewImage.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/camera/ViewImage.java b/src/com/android/camera/ViewImage.java index 04b0f4a..7204fb1 100644 --- a/src/com/android/camera/ViewImage.java +++ b/src/com/android/camera/ViewImage.java @@ -1096,6 +1096,8 @@ public class ViewImage extends Activity implements View.OnClickListener { // The CropImage activity passes back the Uri of the // cropped image as the Action rather than the Data. mSavedUri = Uri.parse(data.getAction()); + // This forces us to renew the image list in init. + mAllImages = null; } break; } |