Przeglądaj źródła

new graphics for encrypted

Marino Faggiana 7 lat temu
rodzic
commit
24d08a3116
1 zmienionych plików z 13 dodań i 2 usunięć
  1. 13 2
      iOSClient/Main/CCMain.m

+ 13 - 2
iOSClient/Main/CCMain.m

@@ -4625,11 +4625,15 @@
         
         if (metadata.directory) {
             
+            /*
             if (metadata.encrypted)
                 cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:metadata.iconName] color:[UIColor redColor]];
             else
                 cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:metadata.iconName] color:[NCBrandColor sharedInstance].brand];
-
+            */
+            
+            cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:metadata.iconName] color:[NCBrandColor sharedInstance].brand];
+            
         } else {
             cell.file.image = [UIImage imageNamed:metadata.iconName];
         }
@@ -4638,7 +4642,7 @@
     }
     
     // ----------------------------------------------------------------------------------------------------------
-    // Image Status cyptated & Lock Passcode
+    // Image Status Lock Passcode
     // ----------------------------------------------------------------------------------------------------------
     
     // Directory con passcode lock attivato
@@ -4649,6 +4653,13 @@
     if (metadata.directory && (directory.lock && [[CCUtility getBlockCode] length]))
         cell.status.image = [UIImage imageNamed:@"passcode"];
     
+    // ----------------------------------------------------------------------------------------------------------
+    // Image Status Encrypted
+    // ----------------------------------------------------------------------------------------------------------
+    
+    if (metadata.encrypted)
+        cell.status.image = [UIImage imageNamed:@"encrypted"];
+    
     // ----------------------------------------------------------------------------------------------------------
     // Favorite
     // ----------------------------------------------------------------------------------------------------------