Fix edit point ordering for arcs in symbol editor.
Was fixed for SCH_SHAPE in f6994702aa
but 8.0 uses LIB_SHAPE for symbols.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/18307
This commit is contained in:
parent
6b6aa84158
commit
697ff382f8
|
@ -106,9 +106,9 @@ public:
|
|||
switch( shape->GetShape() )
|
||||
{
|
||||
case SHAPE_T::ARC:
|
||||
points->AddPoint( mapCoords( shape->GetPosition() ) );
|
||||
points->AddPoint( mapCoords( shape->GetStart() ) );
|
||||
points->AddPoint( mapCoords( shape->GetEnd() ) );
|
||||
points->AddPoint( mapCoords( shape->GetPosition() ) );
|
||||
break;
|
||||
|
||||
case SHAPE_T::CIRCLE:
|
||||
|
|
Loading…
Reference in New Issue