diff options
| author | Mark Walters <markwalters1009@gmail.com> | 2016-10-12 08:39:21 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-10-19 08:39:58 -0300 |
| commit | 4c822aecc75bd6f7cdffc80b704b27dde8e27ea6 (patch) | |
| tree | 3d78e1d372b5c5f7297bf1af7800e110dfc100b9 | |
| parent | a4331bf13859a91ee7b95013954be5c68a70815c (diff) | |
emacs: search face bugfix
In commit 2a7b11b064233afc4feead876fa396e3c18a6b91 the default faces
for unread and flagged were accidentally swapped. This swaps them back.
| -rw-r--r-- | emacs/notmuch.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/notmuch.el b/emacs/notmuch.el index a7e0f2c1..9c7f2020 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -313,7 +313,7 @@ there will be called at other points of notmuch execution." (defface notmuch-search-flagged-face '((t - (:weight bold))) + (:foreground "blue"))) "Face used in search mode face for flagged threads. 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 '((t - (:foreground "blue"))) + (:weight bold))) "Face used in search mode for unread threads. This face is the default value for the \"unread\" tag in |
