summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ben Kwa <kenobi@google.com> 2015-04-16 18:17:25 -0700
committer Ben Kwa <kenobi@google.com> 2015-04-16 18:17:25 -0700
commitd58d954a15fb75d99803a35cda02b661bb6697b5 (patch)
tree277b0961ec6dcaf41272dca7c3d3f67d46914731
parentaaa297056503064eadfa15d9b4fd416f7a35f631 (diff)
Enable the copy feature.
Change-Id: Ie0636895f2b2fe6550eb68042295daf76bbbd7fe
-rw-r--r--packages/DocumentsUI/src/com/android/documentsui/DirectoryFragment.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/DocumentsUI/src/com/android/documentsui/DirectoryFragment.java b/packages/DocumentsUI/src/com/android/documentsui/DirectoryFragment.java
index e2e98077e052..a617bd3d6ca5 100644
--- a/packages/DocumentsUI/src/com/android/documentsui/DirectoryFragment.java
+++ b/packages/DocumentsUI/src/com/android/documentsui/DirectoryFragment.java
@@ -53,7 +53,6 @@ import android.os.Bundle;
import android.os.CancellationSignal;
import android.os.OperationCanceledException;
import android.os.Parcelable;
-import android.os.SystemProperties;
import android.provider.DocumentsContract;
import android.provider.DocumentsContract.Document;
import android.text.format.DateUtils;
@@ -506,10 +505,7 @@ public class DirectoryFragment extends Fragment {
open.setVisible(!manageOrBrowse);
share.setVisible(manageOrBrowse);
delete.setVisible(manageOrBrowse);
-
- // TODO: unhide copying when ready
- copy.setVisible(manageOrBrowse &&
- SystemProperties.getBoolean("debug.documentsui.enable_copy", false));
+ copy.setVisible(manageOrBrowse);
return true;
}