summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2013-01-26 23:17:46 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2013-03-03 13:48:20 +0000
commit3fa6a383267a36721024b5896c5554108a4ebe3a (patch)
tree81a2798479518a9d8dbe24be251d229e60bb8658 /alot/buffers.py
parent0ba2b85b816a1ddb1de189c8d87794485f2cad29 (diff)
use NestedTree
Diffstat (limited to 'alot/buffers.py')
-rw-r--r--alot/buffers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index 39be38d3..6071f624 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -17,7 +17,7 @@ from alot.widgets.globals import AttachmentWidget
from alot.widgets.bufferlist import BufferlineWidget
from alot.widgets.search import ThreadlineWidget
from alot.widgets.thread import ThreadTree
-from alot.foreign.urwidtrees import ArrowTree, TreeBox
+from alot.foreign.urwidtrees import ArrowTree, TreeBox, NestedTree
class Buffer(object):
@@ -322,7 +322,7 @@ class ThreadBuffer(Buffer):
return
self._tree = ThreadTree(self.thread)
- self.body = TreeBox(ArrowTree(self._tree))
+ self.body = TreeBox(NestedTree(ArrowTree(self._tree)))
self.message_count = self.thread.get_total_messages()
def get_selection(self):