]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcgraph.cpp
update the text of a read-only combobox (and hence wxChoice) when selection is change...
[wxWidgets.git] / src / common / dcgraph.cpp
index 613c6a1bcf458d8f166d3535476bbd494787963f..993cccf3dbd6e22935d9512b4f79365fc49ef23c 100644 (file)
@@ -200,6 +200,12 @@ void wxGCDC::DoSetClippingRegionAsRegion( const wxRegion &region )
 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 );