(note_mouse_movement): Upwards mouse movement recognition corrected.

This commit is contained in:
Richard M. Stallman 1996-05-13 15:24:25 +00:00
parent 0d05360db7
commit 9bf7b6aa50

View file

@ -1288,7 +1288,7 @@ note_mouse_movement (frame, msg)
/* Has the mouse moved off the glyph it was on at the last sighting? */
else if (LOWORD (msg->lParam) < last_mouse_glyph.left
|| LOWORD (msg->lParam) > last_mouse_glyph.right
|| HIWORD (msg->lParam) < last_mouse_glyph.left
|| HIWORD (msg->lParam) < last_mouse_glyph.top
|| HIWORD (msg->lParam) > last_mouse_glyph.bottom)
{
frame->mouse_moved = 1;