From 96e0366787d25ba0fedd76f748866cc8e263c7e6 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 29 Jul 2025 10:17:34 -0700 Subject: [PATCH] threads: disable wide in threads Since it breaks the reply line rendering Fixes: 0f00dcf7a7c4 ("fix(columns): render wide notes on narrow screen") Signed-off-by: William Casarin --- crates/notedeck_columns/src/timeline/route.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/notedeck_columns/src/timeline/route.rs b/crates/notedeck_columns/src/timeline/route.rs index 8306823..d4ceb0f 100644 --- a/crates/notedeck_columns/src/timeline/route.rs +++ b/crates/notedeck_columns/src/timeline/route.rs @@ -81,6 +81,9 @@ pub fn render_thread_route( // default truncated everywher eelse note_options.set(NoteOptions::Truncate, false); + // We need the reply lines in threads + note_options.set(NoteOptions::Wide, false); + ui::ThreadView::new( threads, selection.selected_or_root(),