diff options
author | Paul Reilly <pmr@pajato.com> | 1994-09-17 15:06:37 +0000 |
---|---|---|
committer | Paul Reilly <pmr@pajato.com> | 1994-09-17 15:06:37 +0000 |
commit | 200286b15ada25a835d7cc4120f2aed64269743e (patch) | |
tree | dbadfaac4e019399e1d4463f35ab9e4897e0e45d /lwlib | |
parent | d398028fdd7c383685cd02780f7295d08eb2a764 (diff) | |
download | emacs-200286b15ada25a835d7cc4120f2aed64269743e.tar.gz |
*** empty log message ***
Diffstat (limited to 'lwlib')
-rw-r--r-- | lwlib/xlwmenu.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c index c47412848da..e53a1074638 100644 --- a/lwlib/xlwmenu.c +++ b/lwlib/xlwmenu.c @@ -1327,14 +1327,13 @@ Start (w, ev, params, num_params) if (!mw->menu.popped_up) { menu_post_event = *ev; - pop_up_menu (mw, ev); + next_release_must_exit = 0; } else /* If we push a button while the menu is posted semipermanently, releasing the button should always pop the menu down. */ next_release_must_exit = 1; -#if 0 XtCallCallbackList ((Widget)mw, mw->menu.open, NULL); /* notes the absolute position of the menubar window */ @@ -1343,8 +1342,13 @@ Start (w, ev, params, num_params) /* handles the down like a move, slots are compatible */ handle_motion_event (mw, &ev->xmotion); -#endif - + XtGrabPointer ((Widget)mw, False, + (PointerMotionMask | PointerMotionHintMask + | ButtonReleaseMask | ButtonPressMask), + GrabModeAsync, GrabModeAsync, None, + mw->menu.cursor_shape, + ((XButtonPressedEvent *)ev)->time); + pointer_grabbed = 1; } static void |