# HG changeset patch # User Jim Blandy # Date 738062037 0 # Node ID 5440f00480e6cbb6d8cb0c1bbaca2fece245856e # Parent 67fb1010352af6a3f082062c1cc6b257c7c523d3 * xterm.c (x_scroll_bar_handle_click): Never grab the scroll bar; that feature requires more support to work correctly. diff -r 67fb1010352a -r 5440f00480e6 src/xterm.c --- a/src/xterm.c Sat May 22 08:30:16 1993 +0000 +++ b/src/xterm.c Sat May 22 09:13:57 1993 +0000 @@ -2295,12 +2295,16 @@ emacs_event->part = scroll_bar_handle; else emacs_event->part = scroll_bar_below_handle; - + + /* Just because the user has clicked on the handle doesn't mean + they want to drag it. */ +#if 0 /* If the user has just clicked on the handle, record where they're holding it. */ if (event->type == ButtonPress && emacs_event->part == scroll_bar_handle) XSET (bar->dragging, Lisp_Int, y - XINT (bar->start)); +#endif /* If the user has released the handle, set it to its final position. */ if (event->type == ButtonRelease