diff options
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 4c4e14c..9d2009d 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -109,10 +109,10 @@ (defun mastodon-tl--byline (toot) (let ((id (cdr (assoc 'id toot)))) (propertize - (concat (propertize "\n | " 'face 'fringe) + (concat (propertize "\n | " 'face 'default) (mastodon-tl--byline-author toot) (mastodon-tl--byline-boosted toot) - (propertize "\n ------------" 'face 'fringe)) + (propertize "\n ------------" 'face 'default)) 'toot-id id))) (defun mastodon-tl--content (toot) |