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:
Adam Porter 2022-06-29 22:42:55 -05:00
parent a5c96bd682
commit 5878361df0

View file

@ -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))