Property popups for symbols, labels, sheets, and footprints in PDF.
Fixes https://gitlab.com/kicad/code/kicad/issues/5521
This commit is contained in:
@@ -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' )
|
||||
|
||||
Reference in New Issue
Block a user