Default WX_GRID to no cell overflows.
Fixes https://gitlab.com/kicad/code/kicad/issues/8892
This commit is contained in:
parent
0f5a8f87d3
commit
7033dd68c0
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue