Skip to content

Commit

Permalink
[PBE-5700] Quoted text style has no effect
Browse files Browse the repository at this point in the history
  • Loading branch information
kanat authored and JcMinarro committed Aug 27, 2024
1 parent 93a5951 commit ed285d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ public fun interface QuotedMessageTextFormatter {
private fun defaultTextStyle(ownTheme: MessageTheme, otherTheme: MessageTheme): (Boolean) -> TextStyle {
return { isMine ->
when (isMine) {
true -> ownTheme.textStyle
else -> otherTheme.textStyle
true -> ownTheme.quotedTextStyle
else -> otherTheme.quotedTextStyle
}
}
}
Expand Down

0 comments on commit ed285d8

Please sign in to comment.