if ( cg == NULL )
{
SetGraphicsContext( wxGraphicsContext::Create( window ) ) ;
+ SetDeviceOrigin(-window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize());
}
else
{
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 ) ;
}