mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 21:20:45 -08:00
xdisp.c (note_mouse_highlight): Don't do highlight if pointer is invisible (Bug#5766).
This commit is contained in:
parent
660674c1e9
commit
67fee863be
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-03-30 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
|
||||
invisible (Bug#5766).
|
||||
|
||||
2010-03-29 Adrian Robert <adrian.b.robert@gmail.com>
|
||||
|
||||
* xdisp.c (x_consider_frame_title, update_window_cursor): Remove
|
||||
|
|
|
|||
|
|
@ -23551,7 +23551,8 @@ note_mouse_highlight (f, x, y)
|
|||
#endif
|
||||
|
||||
if (NILP (Vmouse_highlight)
|
||||
|| !f->glyphs_initialized_p)
|
||||
|| !f->glyphs_initialized_p
|
||||
|| f->pointer_invisible)
|
||||
return;
|
||||
|
||||
dpyinfo->mouse_face_mouse_x = x;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue