Commit d38571a6 authored by Alexandre Julliard's avatar Alexandre Julliard

hhctrl: Don't use an extended menu.

parent 8bb4bde1
......@@ -685,7 +685,9 @@ static void DisplayPopupMenu(HHInfo *info)
/* Update the Show/Hide menu item */
item.cbSize = sizeof(MENUITEMINFOW);
item.fMask = MIIM_STRING;
item.fMask = MIIM_FTYPE | MIIM_STATE | MIIM_STRING;
item.fType = MFT_STRING;
item.fState = MF_ENABLED;
if (info->WinType.fNotExpanded)
item.dwTypeData = HH_LoadString(IDS_SHOWTABS);
......
......@@ -62,7 +62,7 @@ BEGIN
IDTB_TOC_PREV "IDTB_TOC_PREV"
END
MENU_POPUP MENUEX
MENU_POPUP MENU
{
POPUP "Options"
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment