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

Add padding to status details

This commit is contained in:
Ivan Habunek 2019-08-30 15:36:51 +02:00
parent 51afcf7e34
commit 41f997199a
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -87,7 +87,7 @@ class Timeline(urwid.Columns):
def draw_status_details(self, status):
self.status_details = StatusDetails(status, self.is_thread)
self.contents[2] = self.status_details, ("weight", 60, False)
self.contents[2] = urwid.Padding(self.status_details, left=1), ("weight", 60, False)
def keypress(self, size, key):
status = self.get_focused_status()