Fix about text color.

Fixes #13789
Resolves #13979
This commit is contained in:
Aeryn Light
2025-02-09 01:21:28 -06:00
committed by Greyson Parrelli
parent 1fe58e2bc5
commit 13b1f98076

View File

@@ -208,9 +208,10 @@ private fun Content(
Row {
AndroidView(factory = ::EmojiTextView) {
it.text = model.about
it.setTextColor(textColor.toArgb())
TextViewCompat.setTextAppearance(it, R.style.Signal_Text_BodyLarge)
it.setTextColor(textColor.toArgb())
}
}
},