fix(mu4e): force the account stripe face to be non-italic
With mu4e came a new face for the header view. While this is nice for the text, it had the consequence of making the account stripe (the vertical bar) a bit jarring. This patch fixes that behavior to make the stripe non-italic by append `'default` to the face.
This commit is contained in:
parent
01bb743c6c
commit
2548632600
1 changed files with 3 additions and 1 deletions
|
@ -134,7 +134,8 @@ a quoted symbol for a alist of current strings and faces provided."
|
|||
(put-text-property
|
||||
0 (length str)
|
||||
'face
|
||||
(if (not unique)
|
||||
(list
|
||||
(if (not unique)
|
||||
(+mu4e--str-color-face herring str)
|
||||
(let ((unique-alist (eval unique)))
|
||||
(unless (assoc herring unique-alist)
|
||||
|
@ -152,6 +153,7 @@ a quoted symbol for a alist of current strings and faces provided."
|
|||
(push (cons herring color) unique-alist)))
|
||||
(set unique unique-alist))
|
||||
(cdr (assoc herring unique-alist))))
|
||||
'default)
|
||||
str)
|
||||
str)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue