diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-12 01:39:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-12 01:39:30 +0000 |
commit | 575b5b9a196c47f492686e8ac4fe044b071550c8 (patch) | |
tree | 54c5a7633d78819012f079eb6fa631025fbe3bd2 /src/xmenu.c | |
parent | 20cda85bbee25f4f1a65be480c88fb63ebae913d (diff) | |
download | emacs-575b5b9a196c47f492686e8ac4fe044b071550c8.tar.gz |
(xmenu_show): Don't call XtUngrabPointer here.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r-- | src/xmenu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 12b76516e8c..8eb1c14c368 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -1626,10 +1626,12 @@ xmenu_show (f, x, y, menubarp, keymaps, title, error) /* The mouse moved into a different menu bar item. We should bring up that item's menu instead. First pop down this menu. */ +#if 0 /* xlwmenu.c now does this. */ XtUngrabPointer ((Widget) ((XlwMenuWidget) ((CompositeWidget)menu)->composite.children[0]), CurrentTime); +#endif lw_destroy_all_widgets (menu_id); goto pop_down; } @@ -1702,10 +1704,12 @@ xmenu_show (f, x, y, menubarp, keymaps, title, error) /* The mouse moved into a different menu bar item. We should bring up that item's menu instead. First pop down this menu. */ +#if 0 /* xlwmenu.c now does this. */ XtUngrabPointer ((Widget) ((XlwMenuWidget) ((CompositeWidget)menu)->composite.children[0]), event.xbutton.time); +#endif lw_destroy_all_widgets (menu_id); /* Put back an event that will bring up the other item's menu. */ |