summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/pipeline
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-11-01 20:50:30 -0700
committernicolasroard <nicolasroard@google.com>2013-11-01 20:50:47 -0700
commit1619b3c3ed20fad548d31464ab5a2252b2c3b65f (patch)
tree9baefc8b9ad403c29231e7a0d4963f4ec66b74d1 /src/com/android/gallery3d/filtershow/pipeline
parentc82e65b4f05ae7ad1e910e84ebf8ba65e6afb3bd (diff)
downloadandroid_packages_apps_Gallery2-1619b3c3ed20fad548d31464ab5a2252b2c3b65f.tar.gz
android_packages_apps_Gallery2-1619b3c3ed20fad548d31464ab5a2252b2c3b65f.tar.bz2
android_packages_apps_Gallery2-1619b3c3ed20fad548d31464ab5a2252b2c3b65f.zip
Fix infinite spinner dialog
bug:11328106 Change-Id: Icbfcb7bb6c88a03c81315789b2569da440267edd
Diffstat (limited to 'src/com/android/gallery3d/filtershow/pipeline')
-rw-r--r--src/com/android/gallery3d/filtershow/pipeline/ProcessingService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/filtershow/pipeline/ProcessingService.java b/src/com/android/gallery3d/filtershow/pipeline/ProcessingService.java
index b5b636ec2..e5736d43c 100644
--- a/src/com/android/gallery3d/filtershow/pipeline/ProcessingService.java
+++ b/src/com/android/gallery3d/filtershow/pipeline/ProcessingService.java
@@ -288,7 +288,7 @@ public class ProcessingService extends Service {
if (mNeedsAlive) {
// If the app has been restarted while we were saving...
mFiltershowActivity.updateUIAfterServiceStarted();
- } else if (mFiltershowActivity.isSimpleEditAction()) {
+ } else if (exit || mFiltershowActivity.isSimpleEditAction()) {
// terminate now
mFiltershowActivity.completeSaveImage(result);
}