|
@@ -2042,8 +2042,13 @@ extension PQStuckPointEditerController {
|
|
|
}
|
|
|
// 跳跃卡点不可用
|
|
|
if selectedTotalDuration < 6 && selectedDataCount != selectedImageDataCount {
|
|
|
- jumpPointBtn.setImage(UIImage().BF_Image(named: "jumpPoint_disable"), for: .normal)
|
|
|
- jumpPointBtn.setImage(UIImage().BF_Image(named: "jumpPoint_disable"), for: .selected)
|
|
|
+
|
|
|
+ let styleColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
+ jumpPointBtn.setTitleColor(UIColor.init(red: styleColor.rgbaf[0], green: styleColor.rgbaf[1], blue: styleColor.rgbaf[2], alpha: 0.3), for: .selected)
|
|
|
+
|
|
|
+ let pointEditNamalBackgroundColor = PQBFConfig.shared.pointEditNamalBackgroundColor
|
|
|
+ jumpPointBtn.backgroundColor = UIColor.init(red: pointEditNamalBackgroundColor.rgbaf[0], green: pointEditNamalBackgroundColor.rgbaf[1], blue: pointEditNamalBackgroundColor.rgbaf[2], alpha: 0.3)
|
|
|
+
|
|
|
jumpPointBtnGif.isHidden = true
|
|
|
}
|
|
|
|