marinofaggiana пре 3 година
родитељ
комит
d936936ddb

+ 1 - 1
Nextcloud.xcodeproj/project.pbxproj

@@ -2829,7 +2829,7 @@
 			repositoryURL = "https://github.com/realm/realm-cocoa";
 			requirement = {
 				kind = exactVersion;
-				version = 10.7.3;
+				version = 10.7.4;
 			};
 		};
 		F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */ = {

+ 2 - 2
Nextcloud.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

@@ -51,8 +51,8 @@
         "repositoryURL": "https://github.com/realm/realm-cocoa",
         "state": {
           "branch": null,
-          "revision": "ef818b9d3a2eaab410c178a7cbeb35ffc8187a74",
-          "version": "10.7.3"
+          "revision": "239a6a383af5d4b445626a95aa6356925e6acf22",
+          "version": "10.7.4"
         }
       },
       {

+ 7 - 7
iOSClient/Select/NCSelect.swift

@@ -773,28 +773,28 @@ class NCSelectCommandView: UIView {
         
         overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
         
+        selectButton?.backgroundColor = NCBrandColor.shared.systemGray4
         selectButton?.layer.cornerRadius = 15
         selectButton?.layer.masksToBounds = true
-        selectButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
         selectButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
         selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
         
+        createFolderButton?.backgroundColor = NCBrandColor.shared.systemGray4
         createFolderButton?.layer.cornerRadius = 15
         createFolderButton?.layer.masksToBounds = true
-        createFolderButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
-        createFolderButton?.setTitleColor(.black, for: .normal)
+        createFolderButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
         createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
         
+        copyButton?.backgroundColor = NCBrandColor.shared.systemGray4
         copyButton?.layer.cornerRadius = 15
         copyButton?.layer.masksToBounds = true
-        copyButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
-        copyButton?.setTitleColor(.black, for: .normal)
+        copyButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
         copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
         
+        moveButton?.backgroundColor = NCBrandColor.shared.systemGray4
         moveButton?.layer.cornerRadius = 15
         moveButton?.layer.masksToBounds = true
-        moveButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
-        moveButton?.setTitleColor(.black, for: .normal)
+        moveButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
         moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
     }