| commit | d38571a67a7ba200f84ef79be48f8ebcd772e6ed | [log] [tgz] |
|---|---|---|
| author | Alexandre Julliard <julliard@winehq.org> | Wed Jan 19 23:45:34 2011 +0100 |
| committer | Alexandre Julliard <julliard@winehq.org> | Wed Jan 19 23:50:50 2011 +0100 |
| tree | f2bcb2c67a7ce9929a9622b0b916efaa32550d00 | |
| parent | 8bb4bde1e5cae22cd92296b91a69e98ade2ed831 [diff] [blame] |
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);