Skip to content
Snippets Groups Projects
Commit a52b8266 authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Fixed untrimmed values.

parent 182f284d
No related branches found
No related tags found
No related merge requests found
......@@ -412,6 +412,7 @@ void TextToModelMerger::syncNode(ModelNode &modelNode,
astValue = astValue.trimmed();
if (astValue.endsWith(QLatin1Char(';')))
astValue = astValue.left(astValue.length() - 1);
astValue = astValue.trimmed();
}
if (astPropertyName == QLatin1String("id")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment