diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index d81c79ca52..db1971b12b 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -1475,6 +1475,7 @@ void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event ) wxClientDC dc( m_gridWin ); PrepareDC( dc ); + dc.SetPen(*wxRED_PEN); // FIXME should be bg col dependent dc.SetLogicalFunction(wxXOR); if ( m_dragLastPos >= 0 ) { @@ -1656,6 +1657,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) wxClientDC dc( m_gridWin ); PrepareDC( dc ); + dc.SetPen(*wxRED_PEN); // FIXME should be bg col dependent dc.SetLogicalFunction(wxXOR); if ( m_dragLastPos >= 0 ) {