git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73199
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( cg == NULL )
{
SetGraphicsContext( wxGraphicsContext::Create( window ) ) ;
if ( cg == NULL )
{
SetGraphicsContext( wxGraphicsContext::Create( window ) ) ;
+ SetDeviceOrigin(-window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize());
m_window->GetClientSize( &m_width , &m_height);
if ( !m_window->IsShownOnScreen() )
m_width = m_height = 0;
m_window->GetClientSize( &m_width , &m_height);
if ( !m_window->IsShownOnScreen() )
m_width = m_height = 0;
- SetDeviceOrigin( origin.x, origin.y );
+
+ int x0,y0;
+ DoGetDeviceOrigin(&x0,&y0);
+ SetDeviceOrigin( origin.x + x0, origin.y + y0 );
+
DoSetClippingRegion( 0 , 0 , m_width , m_height ) ;
}
DoSetClippingRegion( 0 , 0 , m_width , m_height ) ;
}