Fix notification header color in black & white theme
This commit is contained in:
parent
310c735ea7
commit
c560581df3
1 changed files with 7 additions and 2 deletions
|
|
@ -81,8 +81,13 @@ class ConversationDetailsActivity : SimpleActivity() {
|
||||||
updateTextColors(binding.conversationDetailsHolder)
|
updateTextColors(binding.conversationDetailsHolder)
|
||||||
|
|
||||||
val primaryColor = getProperPrimaryColor()
|
val primaryColor = getProperPrimaryColor()
|
||||||
binding.conversationNameHeading.setTextColor(primaryColor)
|
arrayOf(
|
||||||
binding.membersHeading.setTextColor(primaryColor)
|
binding.notificationsHeading,
|
||||||
|
binding.conversationNameHeading,
|
||||||
|
binding.membersHeading
|
||||||
|
).forEach {
|
||||||
|
it.setTextColor(primaryColor)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupCustomNotifications() {
|
private fun setupCustomNotifications() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue