From b22e303d40838fdb0603a9b229f0b72f1d859472 Mon Sep 17 00:00:00 2001 From: Emily <92288602+burtonemily@users.noreply.github.com> Date: Wed, 8 Feb 2023 16:16:20 +1100 Subject: [PATCH] Adding in accessibility id for the new read/sent/sending status --- Session/Conversations/Message Cells/VisibleMessageCell.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Session/Conversations/Message Cells/VisibleMessageCell.swift b/Session/Conversations/Message Cells/VisibleMessageCell.swift index 8e419b5dc..9ccb6f916 100644 --- a/Session/Conversations/Message Cells/VisibleMessageCell.swift +++ b/Session/Conversations/Message Cells/VisibleMessageCell.swift @@ -153,7 +153,7 @@ final class VisibleMessageCell: MessageCell, TappableLabelDelegate { result.accessibilityIdentifier = "Message sent status" result.accessibilityLabel = "Message sent status" result.font = .systemFont(ofSize: Values.verySmallFontSize) - result.themeTextColor = .messageBubble_deliveryStatus + result.themeTextColor = .messageBubble_deliveryStatus return result }() @@ -422,6 +422,7 @@ final class VisibleMessageCell: MessageCell, TappableLabelDelegate { messageStatusLabel.text = statusText messageStatusLabel.themeTextColor = tintColor messageStatusImageView.image = image + messageStatusImageView.accessibilityIdentifier = "Message sent status: \(statusText)" messageStatusImageView.themeTintColor = tintColor messageStatusContainerView.isHidden = ( cellViewModel.variant != .standardOutgoing ||