1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-30 06:35:24 +00:00

Fix missing padding

This commit is contained in:
Ivan Habunek 2019-08-31 11:28:26 +02:00
parent d5a2cc27ed
commit c1f518765c
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -38,7 +38,7 @@ class Timeline(urwid.Columns):
super().__init__([
("weight", 40, self.status_list),
("weight", 0, urwid.AttrWrap(urwid.SolidFill(""), "blue_selected")),
("weight", 60, self.status_details),
("weight", 60, urwid.Padding(self.status_details, left=1)),
])
def build_status_list(self, statuses, focus):