7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 15:51:41 +00:00

All imported schematics need connectivity update

Fixes https://gitlab.com/kicad/code/kicad/issues/9907
This commit is contained in:
Seth Hillbrand 2021-12-08 16:26:52 -08:00
parent 1b1bf8a17b
commit f7fb756f78

View File

@ -1230,9 +1230,10 @@ bool SCH_EDIT_FRAME::importFile( const wxString& aFileName, int aFileType )
if( fileType == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE )
{
FixupJunctions();
RecalculateConnections( GLOBAL_CLEANUP );
}
RecalculateConnections( GLOBAL_CLEANUP );
// Only perform the dangling end test on root sheet.
GetScreen()->TestDanglingEnds();