Commit pending changes from grids.
Fixes https://gitlab.com/kicad/code/kicad/issues/6527
This commit is contained in:
parent
005c3b84ad
commit
d3c952b122
|
@ -627,13 +627,10 @@ bool DIALOG_FOOTPRINT_PROPERTIES::TransferDataFromWindow()
|
||||||
if( !Validate() )
|
if( !Validate() )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if( !DIALOG_SHIM::TransferDataFromWindow() )
|
if( !m_itemsGrid->CommitPendingChanges() )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if( !m_PanelGeneral->TransferDataFromWindow() )
|
if( !m_modelsGrid->CommitPendingChanges() )
|
||||||
return false;
|
|
||||||
|
|
||||||
if( !m_Panel3D->TransferDataFromWindow() )
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
auto view = m_frame->GetCanvas()->GetView();
|
auto view = m_frame->GetCanvas()->GetView();
|
||||||
|
|
Loading…
Reference in New Issue