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
1 changed files with 1 additions and 1 deletions

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