diff options
author | jao <jao@gnu.org> | 2021-05-24 06:47:25 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-05-24 06:47:25 +0100 |
commit | bffe6a91452dbb629a28a4ce5b070cced4777fbe (patch) | |
tree | a05d762a47c370b0389ac91f443085ebddefb813 | |
parent | 832d146adb888974ed181147ca87bb49f371e79a (diff) | |
download | elibs-bffe6a91452dbb629a28a4ce5b070cced4777fbe.tar.gz elibs-bffe6a91452dbb629a28a4ce5b070cced4777fbe.tar.bz2 |
minibuffer nits
-rw-r--r-- | lib/eos/jao-minibuffer.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/eos/jao-minibuffer.el b/lib/eos/jao-minibuffer.el index 4d2ec85..549600d 100644 --- a/lib/eos/jao-minibuffer.el +++ b/lib/eos/jao-minibuffer.el @@ -144,12 +144,13 @@ (with-current-buffer b (setq-local mode-line-format '(" ")))) (let ((bg (face-attribute 'default :background))) (set-face-attribute 'mode-line nil :box nil :height 1 - :foreground bg + :background bg :foreground bg :overline jao-minibuffer-active-buffer-line-color :underline jao-minibuffer-inactive-buffer-line-color :extend t) (set-face-attribute 'mode-line-inactive nil :box nil :height 1 - :foreground bg + :background bg :foreground bg + :overline nil :underline jao-minibuffer-inactive-buffer-line-color :extend t)) (advice-add 'force-mode-line-update :after #'jao-minibuffer-refresh) |