mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
fix mu4e-alert-mode-line numberp error
This commit is contained in:
parent
d46b5434f2
commit
b29ce18e68
1 changed files with 22 additions and 20 deletions
|
@ -1586,7 +1586,9 @@ mouse-1: Toggle Debug on Quit"
|
|||
(doom-modeline--active)
|
||||
(bound-and-true-p mu4e-alert-mode-line))
|
||||
;; don't display if the unread mails count is zero
|
||||
(if (> mu4e-alert-mode-line 0)
|
||||
(mu4e-alert--get-mu-unread-mails
|
||||
(lambda (mails)
|
||||
(if (> (length mails) 0)
|
||||
(concat
|
||||
" "
|
||||
(propertize
|
||||
|
@ -1599,13 +1601,13 @@ mouse-1: Toggle Debug on Quit"
|
|||
(propertize "#"
|
||||
'face '(:inherit (doom-modeline-warning doom-modeline-unread-number))))
|
||||
doom-modeline-vspc
|
||||
(propertize (number-to-string mu4e-alert-mode-line)
|
||||
(propertize (length mails)
|
||||
'face '(:inherit (doom-modeline-warning doom-modeline-unread-number))))
|
||||
'mouse-face '(:box 0)
|
||||
'help-echo (if (= mu4e-alert-mode-line 1)
|
||||
"You have an unread email"
|
||||
(format "You have %s unread emails" mu4e-alert-mode-line)))
|
||||
" "))))
|
||||
" "))))))
|
||||
|
||||
(defun doom-modeline-override-mu4e-alert-modeline (&rest _)
|
||||
"Delete `mu4e-alert-mode-line' from global modeline string."
|
||||
|
|
Loading…
Reference in a new issue