Remove type and dot labels

This commit is contained in:
ismailgulek
2021-08-03 17:01:17 +03:00
parent 942d611812
commit a2516f6fc1
2 changed files with 4 additions and 23 deletions
@@ -32,8 +32,6 @@ class CallBubbleCellBaseContentView: UIView {
@IBOutlet weak var avatarImageView: MXKImageView!
@IBOutlet weak var callerNameLabel: UILabel!
@IBOutlet weak var callIconView: UIImageView!
@IBOutlet weak var callTypeLabel: UILabel!
@IBOutlet weak var dotLabel: UILabel!
@IBOutlet private weak var callStatusLabel: UILabel!
@IBOutlet private weak var callSummaryHeightConstraint: NSLayoutConstraint!
@@ -51,7 +49,6 @@ class CallBubbleCellBaseContentView: UIView {
var statusText: String? {
didSet {
dotLabel.isHidden = statusText == nil
callStatusLabel.text = statusText
}
}
@@ -106,8 +103,6 @@ extension CallBubbleCellBaseContentView: Themable {
bgView.backgroundColor = theme.colors.tile
callerNameLabel.textColor = theme.textPrimaryColor
callIconView.tintColor = theme.textTertiaryColor
callTypeLabel.textColor = theme.textSecondaryColor
dotLabel.textColor = theme.textSecondaryColor
callStatusLabel.textColor = theme.textSecondaryColor
if let bottomContainerView = bottomContainerView as? Themable {