Remove nested apply usage
This commit is contained in:
parent
8bc6659d71
commit
66be224b38
|
@ -640,11 +640,9 @@ class ThreadActivity : SimpleActivity() {
|
|||
val textColor = getProperTextColor()
|
||||
|
||||
binding.messageHolder.apply {
|
||||
threadSendMessage.apply {
|
||||
setTextColor(textColor)
|
||||
compoundDrawables.forEach {
|
||||
it?.applyColorFilter(textColor)
|
||||
}
|
||||
threadSendMessage.setTextColor(textColor)
|
||||
threadSendMessage.compoundDrawables.forEach {
|
||||
it?.applyColorFilter(textColor)
|
||||
}
|
||||
|
||||
confirmManageContacts.applyColorFilter(textColor)
|
||||
|
|
Loading…
Reference in New Issue