commit 75fd22d8ed24afffeb089403445d8f17cf5899f7
parent 15b4978d47921a3eeee2ba3b3e849b5005b22a00
Author: William Casarin <jb55@jb55.com>
Date: Mon, 23 Jun 2025 12:59:38 -0700
thread: selected thread notes should be... selectable
We couldn't select text on thread notes before,
now we can
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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,