diff options
| author | Richard M. Stallman | 1996-05-13 15:24:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-05-13 15:24:25 +0000 |
| commit | 9bf7b6aa500cc50a512770ddfd4f072aedb53cea (patch) | |
| tree | 4e9808f0592c4f7517b5c5f5ac75bd1eed239749 /src/w32term.c | |
| parent | 0d05360db7cc1bb79572f0c1ebd0461eb364257e (diff) | |
| download | emacs-9bf7b6aa500cc50a512770ddfd4f072aedb53cea.tar.gz emacs-9bf7b6aa500cc50a512770ddfd4f072aedb53cea.zip | |
(note_mouse_movement): Upwards mouse movement recognition corrected.
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.c b/src/w32term.c index bde3a04986b..7e9c78dde33 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -1288,7 +1288,7 @@ note_mouse_movement (frame, msg) | |||
| 1288 | /* Has the mouse moved off the glyph it was on at the last sighting? */ | 1288 | /* Has the mouse moved off the glyph it was on at the last sighting? */ |
| 1289 | else if (LOWORD (msg->lParam) < last_mouse_glyph.left | 1289 | else if (LOWORD (msg->lParam) < last_mouse_glyph.left |
| 1290 | || LOWORD (msg->lParam) > last_mouse_glyph.right | 1290 | || LOWORD (msg->lParam) > last_mouse_glyph.right |
| 1291 | || HIWORD (msg->lParam) < last_mouse_glyph.left | 1291 | || HIWORD (msg->lParam) < last_mouse_glyph.top |
| 1292 | || HIWORD (msg->lParam) > last_mouse_glyph.bottom) | 1292 | || HIWORD (msg->lParam) > last_mouse_glyph.bottom) |
| 1293 | { | 1293 | { |
| 1294 | frame->mouse_moved = 1; | 1294 | frame->mouse_moved = 1; |