From: Andrew Innes Date: Mon, 13 Jul 1998 19:54:15 +0000 (+0000) Subject: (add_menu_item): Draw menu items like titles if call_data is 0. X-Git-Tag: emacs-20.3~329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=070d1949d1c386a25d07ac8ac370de9c87698607;p=emacs.git (add_menu_item): Draw menu items like titles if call_data is 0. --- diff --git a/src/w32menu.c b/src/w32menu.c index 6c793ca87e5..8adaace306a 100644 --- a/src/w32menu.c +++ b/src/w32menu.c @@ -2047,7 +2047,7 @@ add_menu_item (HMENU menu, widget_value *wv, HMENU item) fuFlags = MF_SEPARATOR; else { - if (wv->enabled && wv->call_data != 0) + if (wv->enabled) fuFlags = MF_STRING; else fuFlags = MF_STRING | MF_GRAYED; @@ -2062,7 +2062,7 @@ add_menu_item (HMENU menu, widget_value *wv, HMENU item) else out_string = wv->name; - if (wv->title) + if (wv->title || wv->call_data == 0) { #if 0 /* no GC while popup menu is active */ out_string = LocalAlloc (0, strlen (wv->name) + 1);