branch: elpa/mastodon
commit cf02f21a22ac7df9fa5fb825eafe288b876c802e
Merge: 5da8c6d282c ed13b077eab
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
Merge branch 'develop'
---
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")))))