Select cells at a time
Selecting cells allows us to cut/paste from individual cells. This is critical to be able to paste from spreadsheets and move columns around
This commit is contained in:
parent
238aa2b5b0
commit
97194983cd
|
@ -745,7 +745,7 @@ DIALOG_FIELDS_EDITOR_GLOBAL::DIALOG_FIELDS_EDITOR_GLOBAL( SCH_EDIT_FRAME* parent
|
|||
m_grid->SetTable( m_dataModel, true );
|
||||
|
||||
// must be done after SetTable(), which appears to re-set it
|
||||
m_grid->SetSelectionMode( wxGrid::wxGridSelectRows );
|
||||
m_grid->SetSelectionMode( wxGrid::wxGridSelectCells );
|
||||
|
||||
// sync m_grid's column visibilities to Show checkboxes in m_fieldsCtrl
|
||||
for( int i = 0; i < m_fieldsCtrl->GetItemCount(); ++i )
|
||||
|
|
Loading…
Reference in New Issue