From 75fd22d8ed24afffeb089403445d8f17cf5899f7 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 23 Jun 2025 12:59:38 -0700 Subject: [PATCH] thread: selected thread notes should be... selectable We couldn't select text on thread notes before, now we can Signed-off-by: William Casarin --- crates/notedeck_columns/src/ui/thread.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/notedeck_columns/src/ui/thread.rs b/crates/notedeck_columns/src/ui/thread.rs index 0e305237..ec5a4302 100644 --- a/crates/notedeck_columns/src/ui/thread.rs +++ b/crates/notedeck_columns/src/ui/thread.rs @@ -307,6 +307,7 @@ impl<'a> ThreadNote<'a> { ThreadNoteType::Chain { root: _ } => cur_options, ThreadNoteType::Selected { root: _ } => { cur_options.set_wide(true); + cur_options.set_selectable_text(true); cur_options } ThreadNoteType::Reply => cur_options,