Skip to content

Commit

Permalink
Fix Malabarba#155 - Nil face in powerline separators
Browse files Browse the repository at this point in the history
  • Loading branch information
Malabarba committed May 20, 2016
1 parent 8fd76a6 commit 57c571d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions themes/smart-mode-line-light-powerline-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Mimics the appearance of powerline.")
`(sml/pre-id-separator
'(""
(:propertize " " face sml/global)
(:eval (propertize " " 'display (funcall ,separator-left nil 'powerline-active1)))
(:eval (propertize " " 'display (funcall ,separator-left 'sml/global 'powerline-active1)))
(:propertize " " face powerline-active1)))
`(sml/pos-id-separator
'(""
Expand All @@ -112,7 +112,7 @@ Mimics the appearance of powerline.")
(:propertize " " face powerline-active1)))
`(sml/pos-minor-modes-separator
'("" (:propertize " " face powerline-active1)
(:eval (propertize " " 'display (funcall ,separator-right 'powerline-active1 nil)))
(:eval (propertize " " 'display (funcall ,separator-right 'powerline-active1 'sml/global)))
(:propertize " " face sml/global)))
'(sml/pre-modes-separator
(propertize " " 'face 'sml/modes))))
Expand Down
4 changes: 2 additions & 2 deletions themes/smart-mode-line-powerline-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Mimics the appearance of powerline.")
`(sml/pre-id-separator
'(""
(:propertize " " face sml/global)
(:eval (propertize " " 'display (funcall ,separator-left nil 'powerline-active1)))
(:eval (propertize " " 'display (funcall ,separator-left 'sml/global 'powerline-active1)))
(:propertize " " face powerline-active1)))
`(sml/pos-id-separator
'(""
Expand All @@ -112,7 +112,7 @@ Mimics the appearance of powerline.")
(:propertize " " face powerline-active1)))
`(sml/pos-minor-modes-separator
'("" (:propertize " " face powerline-active1)
(:eval (propertize " " 'display (funcall ,separator-right 'powerline-active1 nil)))
(:eval (propertize " " 'display (funcall ,separator-right 'powerline-active1 'sml/global)))
(:propertize " " face sml/global)))
'(sml/pre-modes-separator
(propertize " " 'face 'sml/modes))))
Expand Down

0 comments on commit 57c571d

Please sign in to comment.