diff options
author | mousebot <mousebot@riseup.net> | 2021-05-19 12:02:32 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-05-19 12:02:32 +0200 |
commit | 7dca8a210a1802fb9068a4951d9c0e851738d1c1 (patch) | |
tree | c612e0ebf9c7cc78d5d8a8462c64ee80a9a42c65 | |
parent | 75671c421794e53d11be26a963aab332b0586072 (diff) |
fix propertizing of "B" for boost in byline
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index e186bd5..4e0c031 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -369,7 +369,7 @@ it is `mastodon-tl--byline-boosted'" (propertize (concat (when boosted (format "(%s) " - (propertize "B" 'face 'mastodon-boost-face))) + (propertize "B" 'face 'mastodon-boost-fave-face))) (when faved (format "(%s) " (propertize "F" 'face 'mastodon-boost-fave-face))) |