summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-10-07 11:23:13 -0700
committerPatrick Totzke <patricktotzke@gmail.com>2011-10-07 11:23:13 -0700
commit86fa1e8e4ac90cc9e7b0746bbe6e809f9e5871f1 (patch)
tree175e91055a3d74ef8a49ac66f4f8d419d2ca17be /alot
parent3f664c77b88c77cdc9bce029698cfc46e07961d7 (diff)
parent00800ed4ad7b150a2eadf5f81d385d7640818766 (diff)
Merge pull request #90 from teythoon/fix_subject_clipping
Fix clipping of subjects
Diffstat (limited to 'alot')
-rw-r--r--alot/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/widgets.py b/alot/widgets.py
index 231e5128..962706aa 100644
--- a/alot/widgets.py
+++ b/alot/widgets.py
@@ -71,7 +71,7 @@ class ThreadlineWidget(urwid.AttrMap):
self.subject_w = urwid.AttrMap(urwid.Text(subjectstring, wrap='clip'),
'threadline_subject')
if subjectstring:
- cols.append(('fixed', len(subjectstring), self.subject_w))
+ cols.append(('weight', 2, self.subject_w))
if self.display_content:
msgs = self.thread.get_messages().keys()