Fix ugly extra grid line drawn when the first row is selected

This commit is contained in:
Thomas Goyne 2014-04-20 19:46:03 -07:00
parent 5646c05be7
commit 6e0160d730

View file

@ -354,6 +354,7 @@ void BaseGrid::OnPaint(wxPaintEvent &) {
// Draw row background color
if (color != row_colors.Default) {
dc.SetPen(*wxTRANSPARENT_PEN);
dc.SetBrush(color);
dc.DrawRectangle(column_widths[0], (i + 1) * lineHeight + 1, w, lineHeight);
}