Browse Source

pns: fix assertion fail when placing diff pairs

pull/3/merge
Tomasz Włostowski 9 years ago
committed by Maciej Suminski
parent
commit
bb463ad434
  1. 2
      pcbnew/router/pns_topology.cpp

2
pcbnew/router/pns_topology.cpp

@ -47,8 +47,8 @@ bool TOPOLOGY::SimplifyLine( LINE* aLine )
if( simplified.PointCount() != l.PointCount() )
{
LINE lnew( l );
m_world->Remove( l );
LINE lnew( l );
lnew.SetShape( simplified );
m_world->Add( lnew );
return true;

Loading…
Cancel
Save