summaryrefslogtreecommitdiff
path: root/src/msdos.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-12-26 00:22:04 +0000
committerRichard M. Stallman <rms@gnu.org>1995-12-26 00:22:04 +0000
commitd761cf5903d0fe2401cecf255110fa75118eb68c (patch)
treece1db4fb5da821f57378c916143e550e53d595a2 /src/msdos.c
parent1b78a6f85addca5e0ce12c5dd1ff7ca4ff275783 (diff)
downloademacs-d761cf5903d0fe2401cecf255110fa75118eb68c.tar.gz
(XMenuActivate): Make sure the menu title is always
displayed with `msdos-menu-active-face', no matter where the mouse pointer is.
Diffstat (limited to 'src/msdos.c')
-rw-r--r--src/msdos.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/msdos.c b/src/msdos.c
index 5df46edf946..a8435d6ec26 100644
--- a/src/msdos.c
+++ b/src/msdos.c
@@ -1712,6 +1712,7 @@ XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx,
int screensize;
int faces[4], selectface;
int leave, result, onepane;
+ int title_faces[4]; /* face to display the menu title */
/* Just in case we got here without a mouse present... */
if (have_mouse <= 0)
@@ -1736,12 +1737,17 @@ XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx,
faces[2] = compute_glyph_face (&the_only_frame, selectface, faces[0]);
faces[3] = compute_glyph_face (&the_only_frame, selectface, faces[1]);
+ /* Make sure the menu title is always displayed with
+ `msdos-menu-active-face', no matter where the mouse pointer is. */
+ for (i = 0; i < 4; i++)
+ title_faces[i] = faces[3];
+
statecount = 1;
state[0].menu = menu;
mouse_off ();
ScreenRetrieve (state[0].screen_behind = xmalloc (screensize));
- IT_menu_display (menu, y0 - 1, x0 - 1, faces); /* display the menu title */
+ IT_menu_display (menu, y0 - 1, x0 - 1, title_faces); /* display menu title */
if ((onepane = menu->count == 1 && menu->submenu[0]))
{
menu->width = menu->submenu[0]->width;