notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 96e0366787d25ba0fedd76f748866cc8e263c7e6
parent 2a85ee562c2c2b65bbfc0996754e328fe4d55e64
Author: William Casarin <jb55@jb55.com>
Date:   Tue, 29 Jul 2025 10:17:34 -0700

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 <jb55@jb55.com>

Diffstat:
Mcrates/notedeck_columns/src/timeline/route.rs | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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(),