Eagle import: do not call TrimWire() on imported schematics

It turns out that TrimWire() may remove legit Eagle wires and effectively
change the netlist.
This commit is contained in:
Maciej Suminski 2018-03-04 17:56:58 +01:00
parent 1f09990618
commit 2af51ef20f
1 changed files with 0 additions and 3 deletions

View File

@ -852,9 +852,6 @@ bool SCH_EDIT_FRAME::importFile( const wxString& aFileName, int aFileType )
for( auto i = pts.begin(); i != pts.end(); ++i )
{
for( auto j = i + 1; j != pts.end(); ++j )
TrimWire( *i, *j, true );
if( GetScreen()->IsJunctionNeeded( *i, true ) )
AddJunction( *i, true );
}