diff options
author | mousebot <mousebot@riseup.net> | 2021-11-09 10:02:24 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-11-09 10:02:24 +0100 |
commit | 8d543a03694e575cd0352275b60b2d232bfeaeb5 (patch) | |
tree | 608406f8c987a83ef5d9c03e502159744ac8c999 /lisp | |
parent | e738dbb2cbcdfa96fb6b8ce1d4cac0f209ab6a53 (diff) |
remove help-echo for faves/boosts/replies, it breaks img echo keymap
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-tl.el | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 62d283b..5418374 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -720,16 +720,6 @@ takes a single function. By default it is (mastodon-tl--byline toot author-byline action-byline)) 'toot-id (alist-get 'id toot) 'base-toot-id (mastodon-tl--toot-id toot) - 'help-echo (when (and mastodon-tl--buffer-spec - (string-match-p - "context" ; when thread view - (plist-get mastodon-tl--buffer-spec 'endpoint))) - ;; prefer the reblog toot if present: - (let ((toot-to-use (or (alist-get 'reblog toot) toot))) - (format "%s faves | %s boosts | %s replies" - (alist-get 'favourites_count toot-to-use) - (alist-get 'reblogs_count toot-to-use) - (alist-get 'replies_count toot-to-use)))) 'toot-json toot) "\n") (when mastodon-tl--display-media-p |