mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-26 14:09:58 +00:00
Add correct tinting to send button in multiforward activity.
This commit is contained in:
committed by
Cody Henthorne
parent
6c4c299b28
commit
a39b09c314
@@ -32,7 +32,15 @@ open class MultiselectForwardActivity : FragmentWrapperActivity(), MultiselectFo
|
||||
}
|
||||
|
||||
override fun getFragment(): Fragment {
|
||||
return MultiselectForwardFragment.create(args)
|
||||
return MultiselectForwardFragment.create(
|
||||
args.let {
|
||||
if (it.sendButtonTint == -1) {
|
||||
args.withSendButtonTint(ContextCompat.getColor(this, R.color.signal_colorPrimary))
|
||||
} else {
|
||||
args
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
override fun onFinishForwardAction() = Unit
|
||||
|
||||
Reference in New Issue
Block a user