hhctrl: Don't use an extended menu.
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c
index d8725b1..4a0f78b 100644
--- a/dlls/hhctrl.ocx/help.c
+++ b/dlls/hhctrl.ocx/help.c
@@ -685,7 +685,9 @@
 
     /* 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);