diff options
author | Po Lu <luangruo@yahoo.com> | 2022-06-09 15:44:51 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-06-09 15:44:51 +0800 |
commit | 0ba43e15d9c9ffb3df8aeb3a7e446d9a4d62ccff (patch) | |
tree | e76d1ff851edd33ac4111d72e9522b58be86940d /lisp/mouse.el | |
parent | 0936d6fa20894159d75eb1933325d653e4820d90 (diff) | |
download | emacs-0ba43e15d9c9ffb3df8aeb3a7e446d9a4d62ccff.tar.gz emacs-0ba43e15d9c9ffb3df8aeb3a7e446d9a4d62ccff.tar.bz2 emacs-0ba43e15d9c9ffb3df8aeb3a7e446d9a4d62ccff.zip |
Note caveats of `follow-tooltip' with system tooltips
* lisp/mouse.el (mouse-drag-and-drop-region): Turn off system
tooltips inside.
* src/xfns.c (Fx_begin_drag): Say that follow-tooltip doesn't
work with system tooltips.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 6a2b1738f71..11014fa1c5f 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -3103,6 +3103,9 @@ is copied instead of being cut." ;; tooltip. (mouse-fine-grained-tracking t) (was-tooltip-mode tooltip-mode) + ;; System tooltips tend to flicker and in general work + ;; incorrectly. + (use-system-tooltips nil) ;; Whether or not some text was ``cut'' from Emacs to another ;; program and the cleaanup code should not try modifying the ;; region. |