git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44326
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxGCDC::DestroyClippingRegion()
{
m_graphicContext->ResetClip();
void wxGCDC::DestroyClippingRegion()
{
m_graphicContext->ResetClip();
+ // currently the clip eg of a window extends to the area between the scrollbars
+ // so we must explicitely make sure it only covers the area we want it to draw
+ int width, height ;
+ GetSize( &width , &height ) ;
+ m_graphicContext->Clip( DeviceToLogicalX(0) , DeviceToLogicalY(0) , width, height );
+
m_graphicContext->SetPen( m_pen );
m_graphicContext->SetBrush( m_brush );
m_graphicContext->SetPen( m_pen );
m_graphicContext->SetBrush( m_brush );