diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index 41bc1f8..cd12f6a 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -373,7 +373,7 @@ class StatusDetails(urwid.Pile): yield ("pack", urwid.Text([ ("blue", f"{status.created_at.strftime('%Y-%m-%d %H:%M')} "), - ("red" if status.bookmarked else "gray", "🠷 "), + ("red" if status.bookmarked else "gray", "b "), ("gray", f"⤶ {status.data['replies_count']} "), ("yellow" if status.reblogged else "gray", f"♺ {status.data['reblogs_count']} "), ("yellow" if status.favourited else "gray", f"★ {status.data['favourites_count']}"),