diff --git a/Riot/Modules/Room/Views/BubbleCells/Call/CallBubbleCellBaseContentView.swift b/Riot/Modules/Room/Views/BubbleCells/Call/CallBubbleCellBaseContentView.swift index d454a58d1..7ae16a6f8 100644 --- a/Riot/Modules/Room/Views/BubbleCells/Call/CallBubbleCellBaseContentView.swift +++ b/Riot/Modules/Room/Views/BubbleCells/Call/CallBubbleCellBaseContentView.swift @@ -91,10 +91,10 @@ extension CallBubbleCellBaseContentView: Themable { bgView.backgroundColor = theme.headerBackgroundColor callerNameLabel.textColor = theme.textPrimaryColor - callIconView.tintColor = theme.textSecondaryColor - callTypeLabel.textColor = theme.textSecondaryColor - dotLabel.textColor = theme.textSecondaryColor - callStatusLabel.textColor = theme.textSecondaryColor + callIconView.tintColor = theme.textTertiaryColor + callTypeLabel.textColor = theme.textTertiaryColor + dotLabel.textColor = theme.textTertiaryColor + callStatusLabel.textColor = theme.textTertiaryColor if let bottomContainerView = bottomContainerView as? Themable { bottomContainerView.update(theme: theme) diff --git a/Riot/Modules/Room/Views/BubbleCells/Call/Direct/RoomDirectCallStatusBubbleCell.swift b/Riot/Modules/Room/Views/BubbleCells/Call/Direct/RoomDirectCallStatusBubbleCell.swift index 33b3b5ebd..1a53e8fd0 100644 --- a/Riot/Modules/Room/Views/BubbleCells/Call/Direct/RoomDirectCallStatusBubbleCell.swift +++ b/Riot/Modules/Room/Views/BubbleCells/Call/Direct/RoomDirectCallStatusBubbleCell.swift @@ -336,7 +336,7 @@ class RoomDirectCallStatusBubbleCell: RoomBaseCallBubbleCell { callDurationString = readableCallDuration(from: events) isIncoming = inviteEvent.sender != bubbleCellData.mxSession.myUserId callInviteEvent = inviteEvent - innerContentView.callIconView.image = self.callTypeIcon.vc_tintedImage(usingColor: innerContentView.theme.textSecondaryColor) + innerContentView.callIconView.image = self.callTypeIcon innerContentView.callTypeLabel.text = isVideoCall ? VectorL10n.eventFormatterCallVideo : VectorL10n.eventFormatterCallVoice diff --git a/Riot/Modules/Room/Views/BubbleCells/Call/Group/RoomGroupCallStatusBubbleCell.swift b/Riot/Modules/Room/Views/BubbleCells/Call/Group/RoomGroupCallStatusBubbleCell.swift index 8fd32d508..bce734213 100644 --- a/Riot/Modules/Room/Views/BubbleCells/Call/Group/RoomGroupCallStatusBubbleCell.swift +++ b/Riot/Modules/Room/Views/BubbleCells/Call/Group/RoomGroupCallStatusBubbleCell.swift @@ -203,7 +203,6 @@ class RoomGroupCallStatusBubbleCell: RoomBaseCallBubbleCell { self.widgetEvent = widgetEvent self.widgetId = widgetId innerContentView.callIconView.image = Asset.Images.tabGroups.image - .vc_tintedImage(usingColor: innerContentView.theme.textSecondaryColor) innerContentView.callTypeLabel.text = VectorL10n.eventFormatterGroupCall if isIncoming && !isJoined &&