(self, txt)
| 114 | self.header = urwid.AttrMap(h, style) |
| 115 | |
| 116 | def widget(self, txt): |
| 117 | cols, _ = self.master.ui.get_cols_rows() |
| 118 | return urwid.ListBox([urwid.Text(i) for i in textwrap.wrap(txt, cols)]) |
| 119 | |
| 120 | def sig_mod(self, txt): |
| 121 | self.body = self.widget(txt) |