7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-07 17:45:32 +00:00

Explicitly build nets when running test boards

Suggested by @craftyjon, this builds the list of nets needed for DRC
engine before running QA
This commit is contained in:
Seth Hillbrand 2021-11-26 10:48:47 -08:00
parent d7f5917fb0
commit 694bea187e

View File

@ -91,7 +91,7 @@ void LoadBoard( SETTINGS_MANAGER& aSettingsManager, const wxString& aRelPath,
m_DRCEngine->InitEngine( wxFileName() );
aBoard->GetDesignSettings().m_DRCEngine = m_DRCEngine;
aBoard->BuildListOfNets();
aBoard->BuildConnectivity();
}