CADSTAR PCB: Keep all tracks as a single chain where possible
Fixes https://gitlab.com/kicad/code/kicad/-/issues/8119
This commit is contained in:
parent
d041578150
commit
9a764126ce
|
@ -2915,6 +2915,8 @@ std::vector<TRACK*> CADSTAR_PCB_ARCHIVE_LOADER::makeTracksFromDrawsegments(
|
||||||
// Apply route offsetting, mimmicking the behaviour of the CADSTAR post processor
|
// Apply route offsetting, mimmicking the behaviour of the CADSTAR post processor
|
||||||
if( prevTrack != nullptr )
|
if( prevTrack != nullptr )
|
||||||
{
|
{
|
||||||
|
track->SetStart( prevTrack->GetEnd() ); // remove discontinuities if possible
|
||||||
|
|
||||||
int offsetAmount = ( track->GetWidth() / 2 ) - ( prevTrack->GetWidth() / 2 );
|
int offsetAmount = ( track->GetWidth() / 2 ) - ( prevTrack->GetWidth() / 2 );
|
||||||
|
|
||||||
if( offsetAmount > 0 )
|
if( offsetAmount > 0 )
|
||||||
|
|
Loading…
Reference in New Issue