Default WX_GRID to no cell overflows.

Fixes https://gitlab.com/kicad/code/kicad/issues/8892
This commit is contained in:
Jeff Young 2021-08-01 11:57:15 +01:00
parent 0f5a8f87d3
commit 7033dd68c0
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ WX_GRID::WX_GRID( wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxS
long style, const wxString& name ) :
wxGrid( parent, id, pos, size, style, name ),
m_weOwnTable( false )
{}
{
SetDefaultCellOverflow( false );
}
WX_GRID::~WX_GRID()