mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -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
|
||||||
|
Reference in New Issue
Block a user