summaryrefslogtreecommitdiff
path: root/alot/widgets/thread.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2014-04-17 16:58:00 +0200
committerPatrick Totzke <patricktotzke@gmail.com>2014-04-17 16:58:00 +0200
commit4da3570aded25cbafa6540df99bebcb1049a3cfc (patch)
tree92e6328c792039ed79f80c96fcb053f7d1c8437b /alot/widgets/thread.py
parentb054d0de87801c681627ca2ff95c1ce143ba7bc1 (diff)
rm obsolete `MessageBodyWidget`
cf issue #701
Diffstat (limited to 'alot/widgets/thread.py')
-rw-r--r--alot/widgets/thread.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py
index 32229d2e..876dc612 100644
--- a/alot/widgets/thread.py
+++ b/alot/widgets/thread.py
@@ -68,18 +68,6 @@ class MessageSummaryWidget(urwid.WidgetWrap):
return key
-class MessageBodyWidget(urwid.AttrMap):
- """
- displays printable parts of an email
- """
-
- def __init__(self, message):
- self._message = message
- bodytxt = extract_body(message.get_email())
- att = settings.get_theming_attribute('thread', 'body')
- urwid.AttrMap.__init__(self, urwid.Text(bodytxt), att)
-
-
class FocusableText(urwid.WidgetWrap):
"""Selectable Text used for nodes in our example"""
def __init__(self, txt, att, att_focus):