diff options
| author | Andrea Corallo | 2024-02-28 20:47:57 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2024-02-28 20:47:57 +0100 |
| commit | 1fbe56c32761efdc8d268df80a97a9102d00e109 (patch) | |
| tree | 8d8e76c8ae43c79ef9d76b0f97c12607567664b9 /src/pgtkterm.c | |
| parent | 6de60f33ed5cc438e20400aee83e1e2032773811 (diff) | |
| parent | 05195e129fc933db32c9e08a155a94bfa4d75b54 (diff) | |
| download | emacs-1fbe56c32761efdc8d268df80a97a9102d00e109.tar.gz emacs-1fbe56c32761efdc8d268df80a97a9102d00e109.zip | |
Merge remote-tracking branch 'origin/master' into 'feature/type-hierarchy'
Diffstat (limited to 'src/pgtkterm.c')
| -rw-r--r-- | src/pgtkterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pgtkterm.c b/src/pgtkterm.c index b731f52983d..1ec6bfcda4e 100644 --- a/src/pgtkterm.c +++ b/src/pgtkterm.c | |||
| @@ -5825,8 +5825,8 @@ note_mouse_movement (struct frame *frame, | |||
| 5825 | /* Has the mouse moved off the glyph it was on at the last sighting? */ | 5825 | /* Has the mouse moved off the glyph it was on at the last sighting? */ |
| 5826 | r = &dpyinfo->last_mouse_glyph; | 5826 | r = &dpyinfo->last_mouse_glyph; |
| 5827 | if (frame != dpyinfo->last_mouse_glyph_frame | 5827 | if (frame != dpyinfo->last_mouse_glyph_frame |
| 5828 | || event->x < r->x || event->x >= r->x + r->width | 5828 | || event->x < r->x || event->x >= r->x + (int) r->width |
| 5829 | || event->y < r->y || event->y >= r->y + r->height) | 5829 | || event->y < r->y || event->y >= r->y + (int) r->height) |
| 5830 | { | 5830 | { |
| 5831 | frame->mouse_moved = true; | 5831 | frame->mouse_moved = true; |
| 5832 | dpyinfo->last_mouse_scroll_bar = NULL; | 5832 | dpyinfo->last_mouse_scroll_bar = NULL; |