summaryrefslogtreecommitdiff
path: root/alot/widgets/thread.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-09-06 17:16:25 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-09-06 17:16:25 +0100
commitc15bb40496d3adcfd154d084407b9c6bf14c3c95 (patch)
tree856e0310c6ed9f83744c18b623766301ba9d67ac /alot/widgets/thread.py
parent189a30aa5e6e681c0e7cea657e997e655dd42b96 (diff)
actually use mode-specific gap attributes
.. in HeaderList widgets close issue #513
Diffstat (limited to 'alot/widgets/thread.py')
-rw-r--r--alot/widgets/thread.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py
index c6d399e8..ff62ae5a 100644
--- a/alot/widgets/thread.py
+++ b/alot/widgets/thread.py
@@ -150,7 +150,8 @@ class MessageWidget(urwid.WidgetWrap):
key_att = settings.get_theming_attribute('thread', 'header_key')
value_att = settings.get_theming_attribute('thread', 'header_value')
- cols = [HeadersList(lines, key_att, value_att)]
+ gaps_att = settings.get_theming_attribute('thread', 'header')
+ cols = [HeadersList(lines, key_att, value_att, gaps_att)]
bc = list()
if self.depth:
cols.insert(0, self._get_spacer(self.bars_at[1:]))