]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing region clipping
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 6 Nov 2006 08:11:57 +0000 (08:11 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 6 Nov 2006 08:11:57 +0000 (08:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index e9917ab6df59e20f63251d530037ab36e19c6e4b..67b1ed79e2a1d9a6f3f058dcee9612172d722204 100644 (file)
@@ -7705,8 +7705,7 @@ void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) )
     int rightCol = GetColPos( internalXToCol(right) );
     int bottomRow = internalYToRow(bottom);
 
-#ifndef __WXMAC__
-    // CS: I don't know why suddenly unscrolled coordinates are used for clipping
+#if !defined(__WXMAC__) || wxMAC_USE_CORE_GRAPHICS
     wxRegion clippedcells(0, 0, cw, ch);
 
     int i, j, cell_rows, cell_cols;