Commit 2c69cd31 authored by Wayne Stambaugh's avatar Wayne Stambaugh

Fix bug in EESchema when testing for overlapped lines.

parent d44521fe
......@@ -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 )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment