add codepoints for colored brackets around auto-translate text; minor fixes

This commit is contained in:
meli 2020-04-22 06:11:20 -07:00
parent 442fc9d137
commit 1832702a0a
6 changed files with 12 additions and 6 deletions

View file

@ -17,7 +17,9 @@ namespace Dalamud.Game.Chat.SeStringHandling.Payloads
{
get
{
this.text ??= Resolve();
// wrap the text in the colored brackets that is uses in-game, since those
// are not actually part of any of the payloads
this.text ??= $"\uE040 {Resolve()} \uE041";
return this.text;
}
}