diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-01-18 14:38:45 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-01-18 14:38:45 +0000 |
commit | a93c8ba89a47e6cfe90be033c7183b2b746d7c9a (patch) | |
tree | 52925a4e55a3378bf0778032035b62cee8dcd3a5 /lisp/tooltip.el | |
parent | 91523be9250b96b4ebe360630fb4aa6f2263b73a (diff) | |
download | emacs-a93c8ba89a47e6cfe90be033c7183b2b746d7c9a.tar.gz |
(tooltip-hide-delay): New user-option.
(tooltip-show): Use tooltip-hide-delay instead of the default.
Diffstat (limited to 'lisp/tooltip.el')
-rw-r--r-- | lisp/tooltip.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/tooltip.el b/lisp/tooltip.el index 3457760f97d..b0dfc443a59 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -76,6 +76,13 @@ Do so after `tooltip-short-delay'." :group 'tooltip) +(defcustom tooltip-hide-delay 5 + "Hide tooltips automatically after this many seconds." + :tag "Hide delay" + :type 'number + :group 'tooltip) + + (defcustom tooltip-x-offset nil "Specify an X offset for the display of tooltips. The offset is relative to the position of the mouse. It must @@ -338,7 +345,7 @@ change the existing association. Value is the resulting alist." (x-show-tip (propertize text 'face 'tooltip) (selected-frame) params - nil + tooltip-hide-delay tooltip-x-offset tooltip-y-offset)) (error |