Be sure to flush fstream when finalizing SVG export

This commit is contained in:
Thomas Krijnen
2015-07-26 17:59:52 +00:00
parent bb43dec90f
commit f5c32adff1
+1 -1
View File
@@ -347,7 +347,7 @@ void SvgSerializer::finalize() {
}
svg_file << " </g>\n";
svg_file << "</svg>\n";
svg_file << "</svg>" << std::endl;
}
void SvgSerializer::writeHeader() {