tui: fix display glitch for reply icon in timeline

In some fonts, "⤶" (U+2936 ARROW POINTING DOWNWARDS THEN CURVING
LEFTWARDS) may be a double-width character.  To avoid a display glitch
where this overlaps with the boosted icon, print a space after it.
This commit is contained in:
Lexi Winter 2023-12-31 16:17:42 +00:00
parent 09b29d2b93
commit 741a306c69
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ class StatusListItem(SelectableColumns):
favourited = ("highlight", "") if status.original.favourited else " "
reblogged = ("highlight", "") if status.original.reblogged else " "
is_reblog = ("dim", "") if status.reblog else " "
is_reply = ("dim", "") if status.original.in_reply_to else " "
is_reply = ("dim", " ") if status.original.in_reply_to else " "
return super().__init__([
("pack", SelectableText(("status_list_timestamp", created_at), wrap="clip")),