diff --git a/common/plotters/SVG_plotter.cpp b/common/plotters/SVG_plotter.cpp index bd5de4f2fd..56d4b958b1 100644 --- a/common/plotters/SVG_plotter.cpp +++ b/common/plotters/SVG_plotter.cpp @@ -230,6 +230,10 @@ void SVG_PLOTTER::setSVGPlotStyle( bool aIsGroup, const std::string& aExtraStyle case FILLED_WITH_BG_BODYCOLOR: fputs( "fill-opacity:0.6; ", outputFile ); break; + + case FILLED_WITH_COLOR: + wxFAIL_MSG( "FILLED_WITH_COLOR not implemented" ); + break; } double pen_w = userToDeviceSize( GetCurrentLineWidth() ); @@ -549,6 +553,10 @@ void SVG_PLOTTER::PlotPoly( const std::vector& aCornerList, case FILLED_SHAPE: setSVGPlotStyle( false, "fill-rule:evenodd;" ); break; + + case FILLED_WITH_COLOR: + wxFAIL_MSG( "FILLED_WITH_COLOR not implemented" ); + break; } DPOINT pos = userToDeviceCoordinates( aCornerList[0] );