Revert "Add proper tinting to delivery status icon."

This reverts commit c4ac63ea7a89e44f478b0321901eaf43e2745502.
This commit is contained in:
Alex Hart 2023-09-18 16:31:17 -04:00
parent 835fd47482
commit f3a8825cb9
2 changed files with 0 additions and 10 deletions

View file

@ -669,8 +669,6 @@ open class V2ConversationItemTextOnlyViewHolder<Model : MappingModel<Model>>(
return
}
deliveryStatus.setTint(themeDelegate.getFooterIconColor(conversationMessage))
val onlyShowSendingStatus = when {
record.isOutgoing && !record.isRemoteDelete -> false
record.isRemoteDelete -> true

View file

@ -39,10 +39,6 @@ class V2ConversationItemTheme(
return ContextCompat.getColor(context, R.color.signal_colorOnCustom)
}
if (conversationMessage.messageRecord.hasNoBubble(context) && !conversationContext.hasWallpaper()) {
return conversationContext.getColorizer().getIncomingFooterTextColor(context, false)
}
return getColor(
conversationMessage,
conversationContext.getColorizer()::getOutgoingFooterIconColor,
@ -58,10 +54,6 @@ class V2ConversationItemTheme(
return ContextCompat.getColor(context, R.color.signal_colorOnCustom)
}
if (conversationMessage.messageRecord.hasNoBubble(context) && !conversationContext.hasWallpaper()) {
return conversationContext.getColorizer().getIncomingFooterIconColor(context, false)
}
return getColor(
conversationMessage,
conversationContext.getColorizer()::getOutgoingFooterTextColor,