branch: elpa/helm
commit 419f6f53b7fc62b807fcef0d5067ecfa47411d9a
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@posteo.net>

    Use helm-grep-fname prop instead of help-echo in
    
    helm-maybe-show-help-echo.
---
 helm-utils.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/helm-utils.el b/helm-utils.el
index 5882bab5cb..24e8e04a94 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -1045,7 +1045,9 @@ Assume regexp is a pcre based regexp."
            (lambda ()
              (save-selected-window
                (with-helm-window
-                 (helm-aif (get-text-property (pos-bol) 'help-echo)
+                 ;; Use helm-grep-fname prop instead of help-echo as help-echo
+                 ;; maybe used by mouse overlay after resume.
+                 (helm-aif (get-text-property (pos-bol) 'helm-grep-fname)
                      (helm-tooltip-show
                       (concat " " (abbreviate-file-name
                                    (replace-regexp-in-string "\n.*" "" it)))

Reply via email to