summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/view/thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/mail/view/thread.rs')
-rw-r--r--ui/src/components/mail/view/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/mail/view/thread.rs b/ui/src/components/mail/view/thread.rs
index f84ad207..a5100e66 100644
--- a/ui/src/components/mail/view/thread.rs
+++ b/ui/src/components/mail/view/thread.rs
@@ -222,7 +222,7 @@ impl ThreadView {
e.heading = string;
width = cmp::max(width, e.index.0 * 4 + e.heading.grapheme_width() + 2);
}
- let mut content = CellBuffer::new(width, height, Cell::default());
+ let mut content = CellBuffer::new_with_context(width, height, Cell::default(), context);
if self.reversed {
for (y, e) in self.entries.iter().rev().enumerate() {
/* Box character drawing stuff */