Don't reload DRC lists on activate event.

Fixes https://gitlab.com/kicad/code/kicad/issues/5701
This commit is contained in:
Jeff Young 2020-10-01 22:42:49 +01:00
parent af754ae2a2
commit 803f53d6b2
1 changed files with 0 additions and 7 deletions

View File

@ -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();
} }