From 093189b019af8628cdf5e2044d78a21245a634db Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 1 May 2025 17:28:59 -0700 Subject: [PATCH] ui: make post replies selectable I wanted to copy a quote from something I was replying to, I couldn't now I can Fixes: #835 Signed-off-by: William Casarin --- crates/notedeck_columns/src/ui/note/reply.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/notedeck_columns/src/ui/note/reply.rs b/crates/notedeck_columns/src/ui/note/reply.rs index 6ee0c547..4335911b 100644 --- a/crates/notedeck_columns/src/ui/note/reply.rs +++ b/crates/notedeck_columns/src/ui/note/reply.rs @@ -73,6 +73,7 @@ impl<'a, 'd> PostReplyView<'a, 'd> { self.note_options, ) .truncate(false) + .selectable_text(true) .actionbar(false) .medium_pfp(true) .options_button(true)