mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix errors in process segment.
This commit is contained in:
parent
7ea698723f
commit
83bf2c509d
1 changed files with 4 additions and 2 deletions
|
@ -413,7 +413,9 @@ mouse-3: Toggle minor modes"
|
|||
"The process info."
|
||||
(if (doom-modeline--active)
|
||||
mode-line-process
|
||||
(propertize mode-line-process 'face 'mode-line-inactive)))
|
||||
(propertize
|
||||
(format-mode-line '("" mode-line-process))
|
||||
'face 'mode-line-inactive)))
|
||||
|
||||
|
||||
;;
|
||||
|
@ -437,7 +439,7 @@ mouse-1: Display minor modes menu"
|
|||
'mouse-1 #'minions-minor-modes-menu))
|
||||
" ")
|
||||
(propertize
|
||||
(concat (format-mode-line `(:propertize ("" minor-mode-alist))) " ")
|
||||
(concat (format-mode-line '("" minor-mode-alist)) " ")
|
||||
'face (if active
|
||||
'doom-modeline-buffer-minor-mode
|
||||
'mode-line-inactive))))))
|
||||
|
|
Loading…
Reference in a new issue