Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ios.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarinofaggiana <marino@marinofaggiana.com>2020-12-14 13:19:00 +0300
committermarinofaggiana <marino@marinofaggiana.com>2020-12-14 13:19:00 +0300
commitb3e5b3f095dcbca9682e20380511f4b8a3ef407d (patch)
tree2e8fa9e898ee0ae4bb4d8ad0c0d0ac123333986a
parent958959bd0a2697379ecfd6e7dd3eef76735d0177 (diff)
-rw-r--r--iOSClient/Main/Menu/NCCollectionViewCommon+Menu.swift20
1 files changed, 0 insertions, 20 deletions
diff --git a/iOSClient/Main/Menu/NCCollectionViewCommon+Menu.swift b/iOSClient/Main/Menu/NCCollectionViewCommon+Menu.swift
index 7d9f6bc88..07d2044e0 100644
--- a/iOSClient/Main/Menu/NCCollectionViewCommon+Menu.swift
+++ b/iOSClient/Main/Menu/NCCollectionViewCommon+Menu.swift
@@ -393,26 +393,6 @@ extension NCCollectionViewCommon {
)
//
- // SAVE TO PHOTO GALLERY
- //
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_save_selected_files_", comment: ""),
- icon: CCGraphics.changeThemingColorImage(UIImage(named: "saveSelectedFiles"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
- action: { menuAction in
- for ocId in selectOcId {
- if let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(ocId) {
- if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
- NCOperationQueue.shared.download(metadata: metadata, selector: selectorSaveAlbum, setFavorite: false, forceDownload: false)
- }
- }
- }
- self.tapSelect(sender: self)
- }
- )
- )
-
- //
// DELETE
//
actions.append(