Don't deduplicate schematic polygon points
This commit is contained in:
@@ -636,7 +636,10 @@ void EE_POINT_EDITOR::updateParentItem() const
|
||||
shape->GetPolyShape().NewOutline();
|
||||
|
||||
for( unsigned i = 0; i < m_editPoints->PointsSize(); ++i )
|
||||
shape->GetPolyShape().Append( m_editPoints->Point( i ).GetPosition() );
|
||||
{
|
||||
VECTOR2I pt = m_editPoints->Point( i ).GetPosition();
|
||||
shape->GetPolyShape().Append( pt.x, pt.y, -1, -1, true );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user