diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-17 13:17:25 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-17 13:17:25 +0200 |
commit | 8eab2d38ebcde6946b16aeba7c6c0c480141ecdf (patch) | |
tree | 0d53163d186801f16fced11ea9e43feafc6f0ee4 /lisp/mastodon-notifications.el | |
parent | 3e7f1eccd386c3c041a482b9250ed0ef5f768354 (diff) |
notifs: comment faved/boosted toot body line-prefix (breaks cursor highlight)
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index eef68a2..a61492a 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -275,9 +275,13 @@ ACCOUNTS is data of the accounts that have reacted to the notification." ((member type-sym '(favourite reblog)) (propertize (mastodon-notifications--comment-note-text body) - ;; indent faves/boosts (maybe remove): - 'line-prefix " " - 'wrap-prefix " ")) + ;; indent faves/boosts (maybe remove, as it makes + ;; cursor highlight ugly) + ;; but it's nice to be able to differentiate top + ;; byline a little from body of item acted on + ;; 'line-prefix "" + ;; 'wrap-prefix "" + )) (t body))) ;; author-byline #'mastodon-tl--byline-author |