Property popups for symbols, labels, sheets, and footprints in PDF.

Fixes https://gitlab.com/kicad/code/kicad/issues/5521
This commit is contained in:
Jeff Young
2022-09-06 13:59:52 +01:00
parent c337c12410
commit 8afc1db7a6
9 changed files with 118 additions and 22 deletions
+7
View File
@@ -195,6 +195,13 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
else
converted += c;
}
else if( aContext == CTX_JS_STR )
{
if( c == '\'' )
converted += wxT( "{quote}" );
else
converted += c;
}
else if( aContext == CTX_LINE )
{
if( c == '\n' || c == '\r' )