mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
emacs: search face bugfix
In commit 2a7b11b064
the default faces
for unread and flagged were accidentally swapped. This swaps them back.
This commit is contained in:
parent
a4331bf138
commit
4c822aecc7
1 changed files with 2 additions and 2 deletions
|
@ -313,7 +313,7 @@ there will be called at other points of notmuch execution."
|
||||||
|
|
||||||
(defface notmuch-search-flagged-face
|
(defface notmuch-search-flagged-face
|
||||||
'((t
|
'((t
|
||||||
(:weight bold)))
|
(:foreground "blue")))
|
||||||
"Face used in search mode face for flagged threads.
|
"Face used in search mode face for flagged threads.
|
||||||
|
|
||||||
This face is the default value for the \"flagged\" tag in
|
This face is the default value for the \"flagged\" tag in
|
||||||
|
@ -323,7 +323,7 @@ This face is the default value for the \"flagged\" tag in
|
||||||
|
|
||||||
(defface notmuch-search-unread-face
|
(defface notmuch-search-unread-face
|
||||||
'((t
|
'((t
|
||||||
(:foreground "blue")))
|
(:weight bold)))
|
||||||
"Face used in search mode for unread threads.
|
"Face used in search mode for unread threads.
|
||||||
|
|
||||||
This face is the default value for the \"unread\" tag in
|
This face is the default value for the \"unread\" tag in
|
||||||
|
|
Loading…
Reference in a new issue