(note_mouse_movement): Upwards mouse movement recognition corrected.
This commit is contained in:
parent
0d05360db7
commit
9bf7b6aa50
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue