branch: elpa/mastodon
commit ed13b077eab56c455a2f646267c628522d8a7976
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    "in reply to" can also be a link, why not?
---
 lisp/mastodon-tl.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 2d3e5a918ed..b0932fe2dc5 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -824,8 +824,11 @@ If it is a boost, return '$username boosted'."
                  (name (or (alist-get 'display_name acc)
                            (alist-get 'username acc))))
             (concat (mastodon-tl--symbol 'reply)
-                    (propertize " in reply to "
-                                'face 'mastodon-boosted-face)
+                    (mastodon-tl--buttonify-link
+                     " in reply to "
+                     'face 'mastodon-boosted-face
+                     'continued-thread t
+                     'help-echo "Browse thread")
                     (propertize name
                                 'face 'mastodon-display-name-face)
                     "\n")))))

Reply via email to