]> git.saurik.com Git - wxWidgets.git/commitdiff
Use checked bitmap for menu items under Vista.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 26 Sep 2009 13:31:32 +0000 (13:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 26 Sep 2009 13:31:32 +0000 (13:31 +0000)
The normal (unchecked) bitmap was always used for the menu items under Vista,
fix this and do use the checked bitmap if needed.

Closes #11244.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62142 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/menu.cpp

index 657a3fb3c3677893122d99c957809ddca60ebd40..93984343d1f2d3a3c00b0218fee417ebe8d6a32d 100644 (file)
@@ -399,7 +399,7 @@ HBITMAP GetHBitmapForMenu(wxMenuItem *pItem, bool checked = true)
                 pItem->SetBitmap(img, checked);
             }
 
-            return GetHbitmapOf(pItem->GetBitmap());
+            return GetHbitmapOf(pItem->GetBitmap(checked));
         }
     }
 #endif // wxUSE_IMAGE