trackeditor: allow quotes in comments

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8522 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 27fb65a0843d8e728a9c2418c2663b3afdf659c0
Former-commit-id: 3680f713a8ff1502fdbe1453f10d8d15d4765c27
This commit is contained in:
iobyte 2022-09-18 20:23:40 +00:00
parent 64b752487e
commit d13563e61b

View file

@ -974,7 +974,7 @@ public class XmlWriter
{
if (string != null && !string.isEmpty())
{
section.addContent(attstrElement(attribute, string));
section.addContent(attstrElement(attribute, string.replace("\"", """)));
}
}
}