Fix PCB arc edit point order.

This commit is contained in:
Alex 2024-01-18 13:51:32 +03:00
parent 7b24167398
commit 3eb3fc9d1e
1 changed files with 2 additions and 2 deletions

View File

@ -254,10 +254,10 @@ std::shared_ptr<EDIT_POINTS> PCB_POINT_EDITOR::makePoints( EDA_ITEM* aItem )
}
case SHAPE_T::ARC:
points->AddPoint( shape->GetCenter() );
points->AddPoint( shape->GetStart() );
points->AddPoint( shape->GetArcMid() );
points->AddPoint( shape->GetEnd() );
points->AddPoint( shape->GetCenter() );
break;
case SHAPE_T::CIRCLE: