comparison src/xdisp.c @ 33757:96338d0a2758

(display_menu_bar): Or `mode-line-inverse-video' with the face's inverse-video attribute, rather than overriding it.
author Miles Bader <miles@gnu.org>
date Wed, 22 Nov 2000 15:34:56 +0000
parents c45f067779c1
children 07c6230bc933
comparison
equal deleted inserted replaced
33756:b7c2175f13ac 33757:96338d0a2758
12325 row->enabled_p = 1; 12325 row->enabled_p = 1;
12326 row->full_width_p = 1; 12326 row->full_width_p = 1;
12327 } 12327 }
12328 12328
12329 /* Make the first line of the menu bar appear in reverse video. */ 12329 /* Make the first line of the menu bar appear in reverse video. */
12330 it.glyph_row->inverse_p = mode_line_inverse_video != 0; 12330 if (mode_line_inverse_video)
12331 it.glyph_row->inverse_p = 1;
12331 12332
12332 /* Display all items of the menu bar. */ 12333 /* Display all items of the menu bar. */
12333 items = FRAME_MENU_BAR_ITEMS (it.f); 12334 items = FRAME_MENU_BAR_ITEMS (it.f);
12334 for (i = 0; i < XVECTOR (items)->size; i += 4) 12335 for (i = 0; i < XVECTOR (items)->size; i += 4)
12335 { 12336 {