marinofaggiana 3 年之前
父節點
當前提交
ff8612a135
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      iOSClient/Viewer/NCViewerVideo/NCViewerVideoToolBar.swift

+ 4 - 4
iOSClient/Viewer/NCViewerVideo/NCViewerVideoToolBar.swift

@@ -56,15 +56,15 @@ class NCViewerVideoToolBar: UIView {
         let mute = CCUtility.getAudioMute()
         
         if  player?.rate == 1 {
-            playButton.setImage(NCUtility.shared.loadImage(named: "pause.fill"), for: .normal)
+            playButton.setImage(NCUtility.shared.loadImage(named: "pause.fill", color: .white), for: .normal)
         } else {
-            playButton.setImage(NCUtility.shared.loadImage(named: "play.fill"), for: .normal)
+            playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white), for: .normal)
         }
        
         if mute {
-            muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff"), for: .normal)
+            muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .white), for: .normal)
         } else {
-            muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn"), for: .normal)
+            muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn", color: .white), for: .normal)
         }
     }