From 8ab0c9fa017b5ead2e3f5cfc892b242cd0bbc908 Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 21 Jun 2023 15:39:46 +0200 Subject: Make warning messages in color handling code easier to understand --- svg-flatten/src/out_sexp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svg-flatten/src/out_sexp.cpp') diff --git a/svg-flatten/src/out_sexp.cpp b/svg-flatten/src/out_sexp.cpp index 6c9f5ae..347bb7f 100644 --- a/svg-flatten/src/out_sexp.cpp +++ b/svg-flatten/src/out_sexp.cpp @@ -92,7 +92,7 @@ void KicadSexpOutput::header_impl(d2p, d2p) { KicadSexpOutput &KicadSexpOutput::operator<<(GerberPolarityToken pol) { if (pol == GRB_POL_CLEAR) { - cerr << "Warning: clear polarity not supported since KiCAD manages to have an even worse graphics model than gerber, except it can't excuse itself by its age..... -.-" << endl; + cerr << "Warning: Some shapes in this file were interpreted by svg-flatten as gerber \"clear\" polarity (background color). KiCad does not support clear polarity. Thus, these shapes will be omitted in the S-Expression output." << endl; } return *this; -- cgit