Magnetism
This commit is contained in:
parent
b2daea17bc
commit
2d2ed2a915
|
@ -372,12 +372,12 @@ static bool Magnetize( BOARD* m_Pcb, WinEDA_PcbFrame* frame,
|
||||||
{
|
{
|
||||||
if( via != currTrack ) // a via cannot influence itself
|
if( via != currTrack ) // a via cannot influence itself
|
||||||
{
|
{
|
||||||
if( doCheckNet && currTrack && currTrack->GetNet() != via->GetNet() )
|
if( !doCheckNet || !currTrack || currTrack->GetNet() == via->GetNet() )
|
||||||
return false;
|
{
|
||||||
|
*curpos = via->m_Start;
|
||||||
*curpos = via->m_Start;
|
D(printf("via hit\n");)
|
||||||
D(printf("via hit\n");)
|
return true;
|
||||||
return true;
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue