Ver Fonte

fix color in ChatSearchAccessoryBar

cyberta há 3 anos atrás
pai
commit
e2f524e9ec
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      deltachat-ios/Chat/Views/ChatSearchAccessoryBar.swift

+ 1 - 1
deltachat-ios/Chat/Views/ChatSearchAccessoryBar.swift

@@ -57,7 +57,7 @@ public class ChatSearchAccessoryBar: UIView, InputItem {
     private lazy var searchResultLabel: UILabel = {
         let view = UILabel(frame: .zero)
         view.font = UIFont.preferredFont(for: .body, weight: .regular)
-        view.textColor = DcColors.grayDateColor
+        view.textColor = DcColors.grayTextColor
         view.textAlignment = .center
         view.translatesAutoresizingMaskIntoConstraints = false
         return view