From 5e1e45184ba87f4ed1a71240b4957d54ef3eb6d3 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 10 Jun 2025 12:16:23 -0700 Subject: [PATCH] thread: enable selectable text in threads This avoids some of the nested thread loading, but we can fix that next Changelog-Changed: Made text in threads selectable 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 65886195..8051408d 100644 --- a/crates/notedeck_columns/src/timeline/route.rs +++ b/crates/notedeck_columns/src/timeline/route.rs @@ -80,6 +80,9 @@ pub fn render_timeline_route( // default truncated everywher eelse note_options.set_truncate(false); + // text is selectable in threads + note_options.set_selectable_text(true); + ui::ThreadView::new( timeline_cache, unknown_ids,