]> git.saurik.com Git - wxWidgets.git/commitdiff
using correct icon sizes
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 29 Mar 2005 11:45:23 +0000 (11:45 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 29 Mar 2005 11:45:23 +0000 (11:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dc.cpp

index e108c612102c7191e5b94d1b53229e1c9a679aa4..a46cf732404e26297a3ef7d18ef5c639568c30b7 100644 (file)
@@ -418,8 +418,12 @@ void wxDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y )
 
     wxCoord xx = XLOG2DEVMAC(x);
     wxCoord yy = YLOG2DEVMAC(y);
+    wxCoord w = icon.GetWidth();
+    wxCoord h = icon.GetHeight();
+    wxCoord ww = XLOG2DEVREL(w);
+    wxCoord hh = YLOG2DEVREL(h);
 
-    Rect r = { yy , xx, yy + 32  , xx + 32 } ;
+    Rect r = { yy , xx, yy + hh  , xx + ww } ;
     PlotIconRef( &r , kAlignNone , kTransformNone , kPlotIconRefNormalFlags , MAC_WXHICON( icon.GetHICON() ) ) ;
 }