diff options
author | jaseg <git@jaseg.de> | 2023-06-21 15:39:46 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-06-21 15:39:46 +0200 |
commit | 8ab0c9fa017b5ead2e3f5cfc892b242cd0bbc908 (patch) | |
tree | e7e8190cf42f6ccfdf339324d337e0189723b0c3 /svg-flatten/src/out_sexp.cpp | |
parent | 2fbde62df95d55d4edcfb0a65b9c288066fcfe36 (diff) | |
download | gerbolyze-8ab0c9fa017b5ead2e3f5cfc892b242cd0bbc908.tar.gz gerbolyze-8ab0c9fa017b5ead2e3f5cfc892b242cd0bbc908.tar.bz2 gerbolyze-8ab0c9fa017b5ead2e3f5cfc892b242cd0bbc908.zip |
Make warning messages in color handling code easier to understand
Diffstat (limited to 'svg-flatten/src/out_sexp.cpp')
-rw-r--r-- | svg-flatten/src/out_sexp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |