aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-17 12:58:46 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-17 13:01:13 -0400
commitf75f4b4ac048cf004b1f5d44c111c33445edc8ec (patch)
tree5db9fd194ca2c887120c0b9e68371d434662ce44
parente58de9ad62dca7750b28c4d2e6f27f08d4cc894c (diff)
Do not use fringe face
It looks weird in some themes.
-rw-r--r--lisp/mastodon-tl.el4
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)