]> git.saurik.com Git - wxWidgets.git/commitdiff
adding missing part when using the native paint CGContextRef on osx, see #11853
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Apr 2011 16:59:44 +0000 (16:59 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Apr 2011 16:59:44 +0000 (16:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/dcclient.cpp

index 4387f6c2a8a0e337db21425537ad5beb776a47c5..21f3c245bdfc8dd9d543e1e411830f2b011b8e02 100644 (file)
@@ -68,7 +68,9 @@ wxWindowDCImpl::wxWindowDCImpl( wxDC *owner, wxWindow *window )
         if ( window->MacGetLeftBorderSize() != 0 || window->MacGetTopBorderSize() != 0 )
             CGContextTranslateCTM( cg , -window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize() );
 
-        SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) );
+        wxGraphicsContext* context = wxGraphicsContext::CreateFromNative( cg );
+        context->EnableOffset(true);
+        SetGraphicsContext( context );
     }
     DoSetClippingRegion( 0 , 0 , m_width , m_height ) ;