Fix bug with marked interesting nodes not showing up in GUI

This commit is contained in:
Emma Broman
2020-08-21 14:30:13 +02:00
parent 8ea467b6a2
commit 0b34e32ba7
+1 -1
View File
@@ -985,7 +985,7 @@ std::string Profile::convertToScene() const {
{
std::string nodes;
for (const std::string& n : markNodes) {
nodes += fmt::format("[[ {} ]],", n);
nodes += fmt::format("[[{}]],", n);
}
output += fmt::format("openspace.markInterestingNodes({{ {} }});\n", nodes);
}