Finish selection mode after copyto and share...

actions are picked by user.
Bug: 27601508

Change-Id: I32cbc8e8eb4abba4161309327d5ce730610193ad
This commit is contained in:
Steve McKay
2016-05-03 17:47:39 -07:00
parent 7d164d35a4
commit 080efafe1f

View File

@@ -634,6 +634,8 @@ public class DirectoryFragment extends Fragment
case R.id.menu_share:
shareDocuments(selection);
// TODO: Only finish selection if share action is completed.
mode.finish();
return true;
case R.id.menu_delete:
@@ -644,6 +646,9 @@ public class DirectoryFragment extends Fragment
case R.id.menu_copy_to:
transferDocuments(selection, FileOperationService.OPERATION_COPY);
// TODO: Only finish selection mode if copy-to is not canceled.
// Need to plum down into handling the way we do with deleteDocuments.
mode.finish();
return true;
case R.id.menu_move_to: