mirror of
https://github.com/vale981/boon
synced 2025-03-04 09:01:39 -05:00
Fix inactive mode line face symbol (#49)
The variable 'modeline-inactive does not exist. It should be 'mode-line-inactive, as in line 32.
This commit is contained in:
parent
0c25219ab9
commit
675719ec1f
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
(:eval
|
||||
(let* ((active (powerline-selected-window-active))
|
||||
(mode-line (if active 'mode-line 'mode-line-inactive))
|
||||
(face0 (if active (boon-state-face) 'modeline-inactive))
|
||||
(face0 (if active (boon-state-face) 'mode-line-inactive))
|
||||
(face1 (if active 'powerline-active1 'powerline-inactive1))
|
||||
(face2 (if active 'powerline-active2 'powerline-inactive2))
|
||||
(separator-left (intern (format "powerline-%s-%s"
|
||||
|
|
Loading…
Add table
Reference in a new issue