changeset 15229:a270351f6e0c

(note_mouse_movement): Upwards mouse movement recognition corrected.
author Richard M. Stallman <rms@gnu.org>
date Mon, 13 May 1996 15:24:25 +0000
parents ae9888a75348
children 307b7c77a5e5
files src/w32term.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/w32term.c	Mon May 13 15:06:32 1996 +0000
+++ b/src/w32term.c	Mon May 13 15:24:25 1996 +0000
@@ -1288,7 +1288,7 @@
   /* 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;