aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-01-14 17:31:56 +0000
committerJim Blandy1993-01-14 17:31:56 +0000
commit9a572e2a2a7bf743bc1882bcd9f4b38acd96c0be (patch)
treeaf2ef124233da9b37156eecf42d465b21c726b56 /src
parentfda4e8f6d1a012e563b76f426fe606a7187f9525 (diff)
downloademacs-9a572e2a2a7bf743bc1882bcd9f4b38acd96c0be.tar.gz
emacs-9a572e2a2a7bf743bc1882bcd9f4b38acd96c0be.zip
* xterm.c (x_scrollbar_create): Include PointerMotionHintMask in
the event mask for scrollbars.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index ef74a4a3ac8..2b822384de3 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1752,7 +1752,7 @@ x_scrollbar_create (window, top, left, width, height)
1752 1752
1753 a.background_pixel = frame->display.x->background_pixel; 1753 a.background_pixel = frame->display.x->background_pixel;
1754 a.event_mask = (ButtonPressMask | ButtonReleaseMask 1754 a.event_mask = (ButtonPressMask | ButtonReleaseMask
1755 | ButtonMotionMask 1755 | ButtonMotionMask | PointerMotionHintMask
1756 | ExposureMask); 1756 | ExposureMask);
1757 a.cursor = x_vertical_scrollbar_cursor; 1757 a.cursor = x_vertical_scrollbar_cursor;
1758 1758