Make line more readable

This commit is contained in:
Ivan Habunek 2022-12-27 12:11:34 +01:00
parent 69b9ab3164
commit f534d295c0
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 1 additions and 1 deletions

View File

@ -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']}"),