Fix copy/pasta in arc plotting.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16531
This commit is contained in:
Jeff Young 2024-01-05 16:27:26 +00:00
parent a1f796ffa0
commit f5aa2ea8cf
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ void SCH_SHAPE::Plot( PLOTTER* aPlotter, bool aBackground,
switch( GetShape() )
{
case SHAPE_T::ARC:
aPlotter->Arc( GetStart(), GetArcMid(), GetEnd(), m_fill, pen_size );
aPlotter->Arc( GetStart(), GetArcMid(), GetEnd(), FILL_T::NO_FILL, pen_size );
break;
case SHAPE_T::CIRCLE: