Pcbnew: Enable resize of net inspector columns

Fixes https://gitlab.com/kicad/code/kicad/issues/5467
This commit is contained in:
Michael Kavanagh 2020-09-03 18:50:05 +01:00 committed by Seth Hillbrand
parent 636285311e
commit ad1ef9f4c9
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,8 @@ DIALOG_SELECT_NET_FROM_LIST::DIALOG_SELECT_NET_FROM_LIST( PCB_EDIT_FRAME* aParen
m_brd = aParent->GetBoard();
m_wasSelected = false;
#define ADD_COL( name, flag, align ) m_netsList->AppendTextColumn( name, flag, 0, align, 0 );
#define ADD_COL( name, flag, align ) m_netsList->AppendTextColumn( name, flag, 0, align, \
wxDATAVIEW_COL_RESIZABLE );
ADD_COL( COLUMN_NET.display_name, wxDATAVIEW_CELL_INERT, wxALIGN_LEFT );
ADD_COL( COLUMN_NAME.display_name, wxDATAVIEW_CELL_INERT, wxALIGN_LEFT );
@ -1003,4 +1004,3 @@ void DIALOG_SELECT_NET_FROM_LIST::onReport( wxCommandEvent& aEvent )
f.Write();
f.Close();
}