mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix incorrect file icon.
See https://github.com/seagle0128/doom-modeline/issues/114#issuecomment-462471548.
This commit is contained in:
parent
5632bb02b5
commit
eab39937cd
1 changed files with 3 additions and 2 deletions
|
@ -298,7 +298,8 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
||||||
;; major mode icon
|
;; major mode icon
|
||||||
(when (and doom-modeline-icon doom-modeline-major-mode-icon)
|
(when (and doom-modeline-icon doom-modeline-major-mode-icon)
|
||||||
(when-let ((icon (or doom-modeline--buffer-file-icon
|
(when-let ((icon (or doom-modeline--buffer-file-icon
|
||||||
(doom-modeline-update-buffer-file-icon))))
|
(doom-modeline-update-buffer-file-icon)))
|
||||||
|
(face (if active 'mode-line 'mode-line-inactive)))
|
||||||
(concat
|
(concat
|
||||||
(if (and active doom-modeline-major-mode-color-icon)
|
(if (and active doom-modeline-major-mode-color-icon)
|
||||||
icon
|
icon
|
||||||
|
@ -307,7 +308,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
||||||
,(doom-modeline-icon-height 1.1)
|
,(doom-modeline-icon-height 1.1)
|
||||||
:family
|
:family
|
||||||
,(all-the-icons-icon-family icon)
|
,(all-the-icons-icon-family icon)
|
||||||
:inherit mode-line-inactive)))
|
:inherit ,face)))
|
||||||
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))
|
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))
|
||||||
|
|
||||||
;; state icon
|
;; state icon
|
||||||
|
|
Loading…
Reference in a new issue