Mercurial > emacs
changeset 33589:5832e9020859
(Fx_show_tip): Use default y-offset of -10 so that
the tooltip obscures less text under it.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sat, 18 Nov 2000 13:43:59 +0000 |
parents | 0083bc743c14 |
children | 69c02e27fcb1 |
files | src/xfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Sat Nov 18 13:12:18 2000 +0000 +++ b/src/xfns.c Sat Nov 18 13:43:59 2000 +0000 @@ -10498,7 +10498,7 @@ DX isn't specified). Likewise for the y-position; if a `top' frame\n\ parameter is specified, it determines the y-position of the tooltip\n\ window, otherwise it is displayed at the mouse position, with offset\n\ -DY added (default is -5).") +DY added (default is -10).") (string, frame, parms, timeout, dx, dy) Lisp_Object string, frame, parms, timeout, dx, dy; { @@ -10532,7 +10532,7 @@ CHECK_NUMBER (dx, 5); if (NILP (dy)) - dy = make_number (-5); + dy = make_number (-10); else CHECK_NUMBER (dy, 6);