change from column widget to padding for text bodies

pull/4/head
Blake DeMarcy 2017-04-13 08:32:45 -05:00
parent 4a2665a549
commit f4cfcc5614
1 changed files with 3 additions and 3 deletions

View File

@ -552,9 +552,9 @@ class App(object):
return [
head,
urwid.Divider(),
urwid.Columns([
(self.prefs["max_text_width"], MessageBody(message))
]),
urwid.Padding(
MessageBody(message),
width=self.prefs["max_text_width"]),
urwid.Divider(),
urwid.AttrMap(urwid.Divider("-"), "dim")
]