threads: disable wide in threads

Since it breaks the reply line rendering

Fixes: 0f00dcf7a7 ("fix(columns): render wide notes on narrow screen")
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-07-29 10:17:34 -07:00
parent 2a85ee562c
commit 96e0366787

View File

@@ -81,6 +81,9 @@ pub fn render_thread_route(
// default truncated everywher eelse // default truncated everywher eelse
note_options.set(NoteOptions::Truncate, false); note_options.set(NoteOptions::Truncate, false);
// We need the reply lines in threads
note_options.set(NoteOptions::Wide, false);
ui::ThreadView::new( ui::ThreadView::new(
threads, threads,
selection.selected_or_root(), selection.selected_or_root(),