Merge pull request #5993 from Chiogros/space_after_sigil
Append a space to » and › in messages list.
This commit is contained in:
commit
a19e15b9a2
1 changed files with 2 additions and 2 deletions
|
@ -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 -> ""
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue