emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-goggles d1683b3353 167/225: Pulse if the face inherit


From: ELPA Syncer
Subject: [nongnu] elpa/evil-goggles d1683b3353 167/225: Pulse if the face inherits a background
Date: Wed, 12 Jan 2022 08:59:05 -0500 (EST)

branch: elpa/evil-goggles
commit d1683b335380bdda6cf2aac601b37a534201e70d
Author: Evgeni Kolev <evgenysw@gmail.com>
Commit: Evgeni Kolev <evgenysw@gmail.com>

    Pulse if the face inherits a background
---
 evil-goggles.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/evil-goggles.el b/evil-goggles.el
index aefb2bb91b..8cb5cae8d9 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -68,9 +68,9 @@ If nil, the value of `evil-goggles-duration' will be used."
 (defcustom evil-goggles-blocking-duration nil
   "Time in floating seconds the blocking hint should last.
 
-This affects the blocking hints. Such hints are displayed before the
+This affects the blocking hints.  Such hints are displayed before the
 operation, then the UI is blocked for the specified duration, then the
-operation is executed. Such an operation is delete, where the hint
+operation is executed.  Such an operation is delete, where the hint
 only makes sense to be displayed before text is deleted.
 
 If nil, the value of `evil-goggles-duration' will be used."
@@ -183,7 +183,7 @@ DUR is used only when pulsing.
 The overlay is pulsed if variable `evil-goggles-pulse' is t."
   ;; pulsing requires a face with background, so don't pulse if the
   ;; face defines no background
-  (if (and evil-goggles-pulse (face-background face))
+  (if (and evil-goggles-pulse (face-background face nil t))
       (evil-goggles--pulse-overlay ov (evil-goggles--face-background face) dur)
     (overlay-put ov 'face face)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]