mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix face of eldoc-in-minibuffer.
This commit is contained in:
parent
0509ac47f4
commit
f98597f06c
1 changed files with 6 additions and 5 deletions
|
@ -241,8 +241,7 @@ If STRICT-P, return nil if no project was found, otherwise return
|
|||
|
||||
(defun doom-modeline-eldoc (text)
|
||||
(concat (when (display-graphic-p)
|
||||
(doom-modeline--make-xpm
|
||||
(face-background 'doom-modeline-eldoc-bar nil t)
|
||||
(doom-modeline--make-xpm 'doom-modeline-eldoc-bar
|
||||
doom-modeline-height
|
||||
doom-modeline-bar-width))
|
||||
text))
|
||||
|
@ -444,7 +443,9 @@ active."
|
|||
(propertize
|
||||
" " 'display
|
||||
(let ((data (make-list height (make-list width 1)))
|
||||
(color (or (when face (face-background face nil t)) "None")))
|
||||
(color (or (when face
|
||||
(face-background face nil t))
|
||||
"None")))
|
||||
(ignore-errors
|
||||
(create-image
|
||||
(concat
|
||||
|
|
Loading…
Reference in a new issue