branch: elpa/evil-goggles
commit e14b865d8088ca4cecaa062950073c02307a6021
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>
Don't ignore foreground color when not pulsing. Fix #16
---
evil-goggles.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/evil-goggles.el b/evil-goggles.el
index 57600b0800..6761497944 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -85,7 +85,7 @@ appear and disappear."
(progn
(if evil-goggles-pulse
(evil-goggles--pulse-overlay ov bg) ;; pulse the overlay
- (overlay-put ov 'face `(:background ,bg))) ;; just put the
background color on the overlay
+ (overlay-put ov 'face face)) ;; just put the face on the overlay
(sit-for evil-goggles-duration))
(delete-overlay ov))))