Import specctra track locking.

Fixes https://gitlab.com/kicad/code/kicad/issues/11070
This commit is contained in:
Jeff Young 2022-03-14 22:55:57 +00:00
parent a81c8d4922
commit cbb6ca8500
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2007-2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2007 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2007-2022 KiCad Developers, see change_log.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -455,6 +455,7 @@ void SPECCTRA_DB::FromSESSION( BOARD* aBoard )
for( unsigned pt=0; pt<path->points.size()-1; ++pt )
{
PCB_TRACK* track = makeTRACK( path, pt, netoutCode );
track->SetLocked( wire->wire_type == T_protect );
aBoard->Add( track );
}
}