]> git.saurik.com Git - wxWidgets.git/commitdiff
blit using icon mask
authorUnknown (MT) <nobody@localhost>
Mon, 13 Sep 1999 07:13:52 +0000 (07:13 +0000)
committerUnknown (MT) <nobody@localhost>
Mon, 13 Sep 1999 07:13:52 +0000 (07:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3632 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/ownerdrw.cpp

index d60bc8c408344dfcdf12d5f4957802dacbd2482c..82fbbc84087ccbd797ba81e67df04416474ba87e 100644 (file)
@@ -214,10 +214,11 @@ bool wxOwnerDrawn::OnDrawItem(wxDC& dc, const wxRect& rc, wxODAction act, wxODSt
       // there should be enough place!
       wxASSERT((nBmpWidth <= rc.GetWidth()) && (nBmpHeight <= rc.GetHeight()));
 
+      //MT: blit with mask enabled.
       dc.Blit(rc.x + (GetMarginWidth() - nBmpWidth) / 2, 
               rc.y + (m_nHeight - nBmpHeight) /2, 
               nBmpWidth, nBmpHeight, 
-              &dcMem, 0, 0, wxCOPY);
+              &dcMem, 0, 0, wxCOPY,true);
 
       if ( st & wxODSelected ) {
         #ifdef  O_DRAW_NATIVE_API