Mercurial > emacs
comparison src/xterm.c @ 1793:cf4c3f01ddb9
* xterm.c (x_scrollbar_create): Include PointerMotionHintMask in
the event mask for scrollbars.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 14 Jan 1993 17:31:56 +0000 |
parents | 5e245540d06f |
children | 5752a95053f2 |
comparison
equal
deleted
inserted
replaced
1792:1136bc94d196 | 1793:cf4c3f01ddb9 |
---|---|
1750 XSetWindowAttributes a; | 1750 XSetWindowAttributes a; |
1751 unsigned long mask; | 1751 unsigned long mask; |
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 |
1759 mask = (CWBackPixel | CWEventMask | CWCursor); | 1759 mask = (CWBackPixel | CWEventMask | CWCursor); |
1760 | 1760 |