Try harder to keep searchable text hidden in SVG exports

This commit is contained in:
Jon Evans 2024-06-18 11:59:37 -04:00
parent 3f4dc01d97
commit e1ffd956e6
1 changed files with 1 additions and 1 deletions

View File

@ -851,7 +851,7 @@ void SVG_PLOTTER::Text( const VECTOR2I& aPos,
fprintf( m_outputFile,
"textLength=\"%.*f\" font-size=\"%.*f\" lengthAdjust=\"spacingAndGlyphs\"\n"
"text-anchor=\"%s\" opacity=\"0\">%s</text>\n",
"text-anchor=\"%s\" opacity=\"0\" stroke-opacity=\"0\">%s</text>\n",
m_precision, sz_dev.x, m_precision, sz_dev.y, hjust, TO_UTF8( XmlEsc( aText ) ) );
if( !aOrient.IsZero() )