From 47df9e44d18492fa6ce3878eab953fb92bdc59ed Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Wed, 20 Oct 2021 00:55:54 +0100 Subject: [PATCH] widgets: thread: Include Subject in MessageSummary Signed-off-by: Kieran Bingham --- alot/widgets/thread.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py index c5276df83..391e9108e 100644 --- a/alot/widgets/thread.py +++ b/alot/widgets/thread.py @@ -78,9 +78,11 @@ def _render_wrap(size, focus=False): def __str__(self): author, address = self.message.get_author() date = self.message.get_datestring() + subject = self.message.get_subject() rep = author if author != '' else address if date is not None: rep += " (%s)" % date + rep += " " + subject return rep def selectable(self):