From e896726a47740c69c0fb9b541cbb5d1d8ec6e87c Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 10 Jan 2005 08:52:47 +0000 Subject: [PATCH] reverted bitmap depth increases git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/bitmap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/carbon/bitmap.cpp b/src/mac/carbon/bitmap.cpp index 2deb6dc221..67ec567512 100644 --- a/src/mac/carbon/bitmap.cpp +++ b/src/mac/carbon/bitmap.cpp @@ -324,12 +324,12 @@ void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bi if ( bitmap.GetMask() ) { info->u.cIconHandle = wxMacCreateCIcon( MAC_WXHBITMAP(bmap->m_hBitmap) , MAC_WXHBITMAP(bitmap.GetMask()->GetMaskBitmap()) , - 24 , bmap->m_width ) ; + 8 , bmap->m_width ) ; } else { info->u.cIconHandle = wxMacCreateCIcon( MAC_WXHBITMAP(bmap->m_hBitmap) , NULL , - 24 , bmap->m_width ) ; + 8 , bmap->m_width ) ; } } else