]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menu.cpp
Fix to preserve alpha channel in Rotate90
[wxWidgets.git] / src / msw / menu.cpp
index 12dfbd7133c572d24df06440a4ebf6d3bc891da1..37d22056e1c8e76d9a193a35ae0d8209f12d972e 100644 (file)
@@ -106,7 +106,8 @@ UINT GetMenuState(HMENU hMenu, UINT id, UINT flags)
     wxZeroMemory(info);
     info.cbSize = sizeof(info);
     info.fMask = MIIM_STATE;
-    if ( !::GetMenuItemInfo(hMenu, id, flags & MF_BYCOMMAND ? FALSE : TRUE, & info) )
+    // MF_BYCOMMAND is zero so test MF_BYPOSITION
+    if ( !::GetMenuItemInfo(hMenu, id, flags & MF_BYPOSITION ? TRUE : FALSE , & info) )
         wxLogLastError(wxT("GetMenuItemInfo"));
     return info.fState;
 }