]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for goofed up grid borders when scrolling/refreshing
authorRobin Dunn <robin@alldunn.com>
Tue, 15 Feb 2000 18:33:16 +0000 (18:33 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 15 Feb 2000 18:33:16 +0000 (18:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 1c7a6320f010ab14bddd7b26d0464495411185a1..fd9629d865e697009c0351447a3fb1d5395192ca 100644 (file)
@@ -3673,8 +3673,8 @@ void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords )
     wxRect rect;
     rect.x = m_colRights[col] - m_colWidths[col];
     rect.y = m_rowBottoms[row] - m_rowHeights[row];
-    rect.width = m_colWidths[col];
-    rect.height = m_rowHeights[row];
+    rect.width = m_colWidths[col]-1;
+    rect.height = m_rowHeights[row]-1;
 
     wxGridCellAttr* attr = GetCellAttr(row, col);
     attr->GetRenderer()->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords));