Fix face-background calls in +modeline-refresh-bars-h

Third argument should be a boolean; symbols are treated as references to
faces to inherit from.
This commit is contained in:
Henrik Lissner 2019-12-20 20:58:52 -05:00
parent 2ed4e0d55c
commit a54098a098
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -188,12 +188,12 @@ LHS and RHS will accept."
(setq +modeline-bar (setq +modeline-bar
(+modeline--make-xpm (+modeline--make-xpm
(and +modeline-bar-width (and +modeline-bar-width
(face-background '+modeline-bar nil 'inherit)) (face-background '+modeline-bar nil t))
width height) width height)
+modeline-inactive-bar +modeline-inactive-bar
(+modeline--make-xpm (+modeline--make-xpm
(and +modeline-bar-width (and +modeline-bar-width
(face-background '+modeline-bar-inactive nil 'inherit)) (face-background '+modeline-bar-inactive nil t))
width height))))) width height)))))
(add-hook! 'doom-change-font-size-hook (add-hook! 'doom-change-font-size-hook