Fix bug in EESchema when testing for overlapped lines.
This commit is contained in:
parent
d44521fe6f
commit
2c69cd319b
|
@ -646,7 +646,7 @@ bool SCH_LINE::MergeOverlap( SCH_LINE* aLine )
|
|||
if( m_End == aLine->m_End )
|
||||
return true;
|
||||
|
||||
EXCHG( m_Start, aLine->m_End );
|
||||
EXCHG( m_Start, m_End );
|
||||
}
|
||||
else if( m_Start == aLine->m_End )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue