Browse Source

Eeschema: fix incorrect plot of filled polygons and bezier shapes.

Fill was plotted using a transparent color (opacity = 0).

Fixes https://gitlab.com/kicad/code/kicad/-/issues/21804
master
jean-pierre charras 2 days ago
parent
commit
99e4ce0ae8
  1. 4
      eeschema/sch_shape.cpp

4
eeschema/sch_shape.cpp

@ -229,6 +229,10 @@ void SCH_SHAPE::Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS&
return;
color = GetFillColor();
if( color == COLOR4D::UNSPECIFIED )
color = renderSettings->GetLayerColor( m_layer );
break;
case FILL_T::FILLED_WITH_BG_BODYCOLOR:

Loading…
Cancel
Save