Don't reload DRC lists on activate event.
Fixes https://gitlab.com/kicad/code/kicad/issues/5701
This commit is contained in:
parent
af754ae2a2
commit
803f53d6b2
|
@ -119,14 +119,7 @@ void DIALOG_DRC::OnActivateDlg( wxActivateEvent& aEvent )
|
||||||
|
|
||||||
DRC_TOOL* drcTool = m_brdEditor->GetToolManager()->GetTool<DRC_TOOL>();
|
DRC_TOOL* drcTool = m_brdEditor->GetToolManager()->GetTool<DRC_TOOL>();
|
||||||
drcTool->DestroyDRCDialog();
|
drcTool->DestroyDRCDialog();
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m_markerTreeModel->SetProvider( m_markersProvider );
|
|
||||||
m_unconnectedTreeModel->SetProvider( m_unconnectedItemsProvider );
|
|
||||||
m_footprintWarningsTreeModel->SetProvider( m_footprintWarningsProvider );
|
|
||||||
updateDisplayedCounts();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue