marinofaggiana 4 years ago
parent
commit
07ff35748a
2 changed files with 5 additions and 2 deletions
  1. 2 1
      iOSClient/Main/Cell/NCGridCell.swift
  2. 3 1
      iOSClient/Main/Cell/NCListCell.swift

+ 2 - 1
iOSClient/Main/Cell/NCGridCell.swift

@@ -56,7 +56,8 @@ class NCGridCell: UICollectionViewCell, NCImageCellProtocol {
         imageItem.layer.masksToBounds = true
         
         progressView.tintColor = NCBrandColor.sharedInstance.brandElement
-        progressView.transform = CGAffineTransform(scaleX: 1, y: 1)
+        progressView.transform = CGAffineTransform(scaleX: 1.0, y: 0.5)
+        progressView.trackTintColor = .clear
         
         setButtonMore(named: "more")
     }

+ 3 - 1
iOSClient/Main/Cell/NCListCell.swift

@@ -68,7 +68,9 @@ class NCListCell: UICollectionViewCell, NCImageCellProtocol {
         imageItem.layer.masksToBounds = true
         
         progressView.tintColor = NCBrandColor.sharedInstance.brandElement
-        progressView.transform = CGAffineTransform(scaleX: 1, y: 1)
+        progressView.transform = CGAffineTransform(scaleX: 1.0, y: 0.5)
+        progressView.trackTintColor = .clear
+
         separator.backgroundColor = NCBrandColor.sharedInstance.separator
         
         setButtonMore(named: "more")