From f534d295c0365c1f7242636d3f9aac5bf102f822 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 27 Dec 2022 12:11:34 +0100 Subject: [PATCH] Make line more readable --- toot/tui/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index 70134b7..26b67ab 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -314,7 +314,7 @@ class StatusDetails(urwid.Pile): ) yield ("pack", urwid.Text([ - ("red" if status.bookmarked else "gray", "🠷" if status.bookmarked else " "), + ("red", "🠷 ") if status.bookmarked else "", ("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']}"),