From cac4d70154b2cc27990de35a05ff4e52089d3892 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Wed, 14 Apr 2021 22:41:24 -0400 Subject: [PATCH] PNS: Respect fix-all in diff pair placer --- pcbnew/router/pns_diff_pair_placer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/router/pns_diff_pair_placer.cpp b/pcbnew/router/pns_diff_pair_placer.cpp index 6a541c6908..d65b193d97 100644 --- a/pcbnew/router/pns_diff_pair_placer.cpp +++ b/pcbnew/router/pns_diff_pair_placer.cpp @@ -724,7 +724,8 @@ bool DIFF_PAIR_PLACER::FixRoute( const VECTOR2I& aP, ITEM* aEndItem, bool aForce TOPOLOGY topo( m_lastNode ); - if( !m_snapOnTarget && !m_currentTrace.EndsWithVias() && !aForceFinish ) + if( !m_snapOnTarget && !m_currentTrace.EndsWithVias() && !aForceFinish && + !Settings().GetFixAllSegments() ) { SHAPE_LINE_CHAIN newP( m_currentTrace.CP() ); SHAPE_LINE_CHAIN newN( m_currentTrace.CN() );