From f5aa2ea8cf42dc9a16b70201ed53b2c44317fd5e Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 5 Jan 2024 16:27:26 +0000 Subject: [PATCH] Fix copy/pasta in arc plotting. Fixes https://gitlab.com/kicad/code/kicad/-/issues/16531 --- eeschema/sch_shape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_shape.cpp b/eeschema/sch_shape.cpp index 675a6ade74..b5f154cf8e 100644 --- a/eeschema/sch_shape.cpp +++ b/eeschema/sch_shape.cpp @@ -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: