Mercurial > emacs
changeset 1828:1463592a6463
* xmenu.c (Fx_popup_menu): Don't forget to turn the frame-relative
coordinates for the menu position into root-window-relative
coordinates.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Fri, 29 Jan 1993 22:13:36 +0000 |
parents | e31051f17b9d |
children | 514384c3689d |
files | src/xmenu.c |
diffstat | 1 files changed, 25 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xmenu.c Fri Jan 29 21:32:37 1993 +0000 +++ b/src/xmenu.c Fri Jan 29 22:13:36 1993 +0000 @@ -223,9 +223,31 @@ } #endif BLOCK_INPUT; - selection = xmenu_show (ROOT_WINDOW, XMenu_xpos, XMenu_ypos, names, menus, - items, number_of_panes, obj_list, title, - &error_name); + { + Window root; + int root_x, root_y; + int dummy_int; + unsigned int dummy_uint; + Window dummy_window; + + /* Figure out which root window F is on. */ + XGetGeometry (x_current_display, FRAME_X_WINDOW (f), &root, + &dummy_int, &dummy_int, &dummy_uint, &dummy_uint, + &dummy_uint, &dummy_uint); + + /* Translate the menu co-ordinates within f to menu co-ordinates + on that root window. */ + if (! XTranslateCoordinates (x_current_display, + FRAME_X_WINDOW (f), root, + XMenu_xpos, XMenu_ypos, &root_x, &root_y, + &dummy_window)) + /* But XGetGeometry said root was the root window of f's screen! */ + abort (); + + selection = xmenu_show (root, XMenu_xpos, XMenu_ypos, names, menus, + items, number_of_panes, obj_list, title, + &error_name); + } UNBLOCK_INPUT; /* fprintf (stderr, "selection = %x\n", selection); */ if (selection != NUL)