Merge pull request #5993 from Chiogros/space_after_sigil

Append a space to » and › in messages list.
This commit is contained in:
cketti 2022-04-11 15:54:02 +02:00 committed by GitHub
commit a19e15b9a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,8 +83,8 @@ class MessageListAdapter internal constructor(
}
private fun recipientSigil(toMe: Boolean, ccMe: Boolean) = when {
toMe -> res.getString(R.string.messagelist_sent_to_me_sigil)
ccMe -> res.getString(R.string.messagelist_sent_cc_me_sigil)
toMe -> res.getString(R.string.messagelist_sent_to_me_sigil) + " "
ccMe -> res.getString(R.string.messagelist_sent_cc_me_sigil) + " "
else -> ""
}