Added missing not operator that was preventing the drawing of the
gridlines git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
4c82058341
commit
afd0f084f4
@ -7290,7 +7290,7 @@ void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) )
|
||||
return;
|
||||
#endif
|
||||
|
||||
if ( !m_gridLinesEnabled || m_numRows || !m_numCols )
|
||||
if ( !m_gridLinesEnabled || !m_numRows || !m_numCols )
|
||||
return;
|
||||
|
||||
int top, bottom, left, right;
|
||||
|
Loading…
Reference in New Issue
Block a user