summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app/AlbumSetPage.java
diff options
context:
space:
mode:
authorRay Chen <raychen@google.com>2012-05-03 13:10:51 +0800
committerRay Chen <raychen@google.com>2012-05-22 11:06:48 +0800
commit7f9061790e1b67b6c674314ac41a399c550f8b88 (patch)
tree45b654cdcd4a2e3764d6ff5fdf5bbff3d227b443 /src/com/android/gallery3d/app/AlbumSetPage.java
parent6ca39c75e668eab51645f33117cae5156f64975d (diff)
downloadandroid_packages_apps_Snap-7f9061790e1b67b6c674314ac41a399c550f8b88.tar.gz
android_packages_apps_Snap-7f9061790e1b67b6c674314ac41a399c550f8b88.tar.bz2
android_packages_apps_Snap-7f9061790e1b67b6c674314ac41a399c550f8b88.zip
Fix 6360834 Select All is shown in place of Deselect all option
The CL changes the SelectionManager's toggle method so it changes itself to inverse selection mode when all items are already selected, and onSelectionModeChange will be triggered so the listener can update the selection menu (Select all/Deselect all) and ActionBar. Change-Id: I9aa5507067415e52f6800c254ecb4d68e7395ffa b: 6360834
Diffstat (limited to 'src/com/android/gallery3d/app/AlbumSetPage.java')
-rw-r--r--src/com/android/gallery3d/app/AlbumSetPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/app/AlbumSetPage.java b/src/com/android/gallery3d/app/AlbumSetPage.java
index c6e3596ec..8376b2792 100644
--- a/src/com/android/gallery3d/app/AlbumSetPage.java
+++ b/src/com/android/gallery3d/app/AlbumSetPage.java
@@ -545,7 +545,7 @@ public class AlbumSetPage extends ActivityState implements
break;
}
case SelectionManager.SELECT_ALL_MODE: {
- mActionModeHandler.setTitle(getSelectedString());
+ mActionModeHandler.updateSupportedOperation();
mRootPane.invalidate();
break;
}