kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix note to self label in conversation settings.
rodzic
6dec6cef27
commit
63f4f0bcec
|
@ -38,7 +38,12 @@ object BioTextPreference {
|
||||||
) : BioTextPreferenceModel<RecipientModel>() {
|
) : BioTextPreferenceModel<RecipientModel>() {
|
||||||
|
|
||||||
override fun getHeadlineText(context: Context): CharSequence {
|
override fun getHeadlineText(context: Context): CharSequence {
|
||||||
val name = recipient.getDisplayNameOrUsername(context)
|
val name = if (recipient.isSelf) {
|
||||||
|
context.getString(R.string.note_to_self)
|
||||||
|
} else {
|
||||||
|
recipient.getDisplayNameOrUsername(context)
|
||||||
|
}
|
||||||
|
|
||||||
return if (recipient.showVerified()) {
|
return if (recipient.showVerified()) {
|
||||||
SpannableStringBuilder(name).apply {
|
SpannableStringBuilder(name).apply {
|
||||||
SpanUtil.appendCenteredImageSpan(this, ContextUtil.requireDrawable(context, R.drawable.ic_official_28), 28, 28)
|
SpanUtil.appendCenteredImageSpan(this, ContextUtil.requireDrawable(context, R.drawable.ic_official_28), 28, 28)
|
||||||
|
|
Ładowanie…
Reference in New Issue