mirror of
https://github.com/vale981/ement.el
synced 2025-03-04 17:01:39 -05:00
Change: (ement-taxy) Highlight highlight count, not notification
The highlight count should stand out more, and in themes like doom-solarized and the modus-themes, the mention face doesn't stand out while the highlight one does, so now we use the highlight face for highlights (which represent mentions or keywords).
This commit is contained in:
parent
a5c96bd682
commit
5878361df0
1 changed files with 4 additions and 4 deletions
|
@ -299,12 +299,12 @@
|
|||
(equal 0 highlight_count)))
|
||||
""
|
||||
(concat (propertize (number-to-string notification_count)
|
||||
'face 'highlight)
|
||||
":"
|
||||
(propertize (number-to-string highlight_count)
|
||||
'face (if (zerop highlight_count)
|
||||
'default
|
||||
'ement-room-mention))))))
|
||||
'ement-room-mention))
|
||||
":"
|
||||
(propertize (number-to-string highlight_count)
|
||||
'face 'highlight)))))
|
||||
|
||||
(ement-taxy-define-column "Latest" ()
|
||||
(pcase-let ((`[,(cl-struct ement-room latest-ts) ,_session] item))
|
||||
|
|
Loading…
Add table
Reference in a new issue