Optimize PDF plot data size for property popups; fix unicode escape.

Adds a document-level action JSInit, which defines ShM function,
allowing more compact data representation. Also reduces whitespaces.
This commit is contained in:
Alex Shvartzkop
2023-07-04 08:57:29 +03:00
parent b09ab2daab
commit afe176abe2
3 changed files with 70 additions and 39 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
{
unsigned int code = c;
char buffer[16];
snprintf( buffer, sizeof(buffer), "\\\\u%4.4X", code );
snprintf( buffer, sizeof(buffer), "\\u%4.4X", code );
converted += buffer;
}
else