diff --git a/utils/misc.cpp b/utils/misc.cpp index 0e70b3b..08381b0 100644 --- a/utils/misc.cpp +++ b/utils/misc.cpp @@ -89,6 +89,7 @@ wxString escapeHtml(wxString text, bool pre) { text.Replace("&", "&"); text.Replace("<", "<"); text.Replace(">", ">"); + text.Replace(" ", " "); if (!pre) text.Replace("\n", "
"); return text; }