diff options
| author | Gerd Moellmann | 2000-11-18 13:43:59 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-18 13:43:59 +0000 |
| commit | 12c67a7f919bf195f5db965fcdc8a18ff560cf26 (patch) | |
| tree | 058aef6f71673f8b9ffc1c04b77253c9c91de9f4 | |
| parent | 967b06fd8bfde5e5778f57e0e009421da312ee44 (diff) | |
| download | emacs-12c67a7f919bf195f5db965fcdc8a18ff560cf26.tar.gz emacs-12c67a7f919bf195f5db965fcdc8a18ff560cf26.zip | |
(Fx_show_tip): Use default y-offset of -10 so that
the tooltip obscures less text under it.
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c index 1a45b20c984..ca90996770d 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -10498,7 +10498,7 @@ displayed at the mouse position, with offset DX added (default is 5 if\n\ | |||
| 10498 | DX isn't specified). Likewise for the y-position; if a `top' frame\n\ | 10498 | DX isn't specified). Likewise for the y-position; if a `top' frame\n\ |
| 10499 | parameter is specified, it determines the y-position of the tooltip\n\ | 10499 | parameter is specified, it determines the y-position of the tooltip\n\ |
| 10500 | window, otherwise it is displayed at the mouse position, with offset\n\ | 10500 | window, otherwise it is displayed at the mouse position, with offset\n\ |
| 10501 | DY added (default is -5).") | 10501 | DY added (default is -10).") |
| 10502 | (string, frame, parms, timeout, dx, dy) | 10502 | (string, frame, parms, timeout, dx, dy) |
| 10503 | Lisp_Object string, frame, parms, timeout, dx, dy; | 10503 | Lisp_Object string, frame, parms, timeout, dx, dy; |
| 10504 | { | 10504 | { |
| @@ -10532,7 +10532,7 @@ DY added (default is -5).") | |||
| 10532 | CHECK_NUMBER (dx, 5); | 10532 | CHECK_NUMBER (dx, 5); |
| 10533 | 10533 | ||
| 10534 | if (NILP (dy)) | 10534 | if (NILP (dy)) |
| 10535 | dy = make_number (-5); | 10535 | dy = make_number (-10); |
| 10536 | else | 10536 | else |
| 10537 | CHECK_NUMBER (dy, 6); | 10537 | CHECK_NUMBER (dy, 6); |
| 10538 | 10538 | ||