diff --git a/src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp b/src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp index a3b163980c..6c66934bd3 100644 --- a/src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp +++ b/src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp @@ -77,9 +77,13 @@ SVGExporter::Export(const Icon* icon, BPositionIO* stream) // image size if (ret >= B_OK) { - helper << "\n"; + << " color-interpolation=\"linearRGB\"\n" + << " xmlns:svg=\"http://www.w3.org/2000/svg\"" +// Should be needed when exporting inline images: +// << " xmlns:xlink=\"http://www.w3.org/1999/xlink\"" + << " xmlns=\"http://www.w3.org/2000/svg\">\n"; ret = write_line(stream, helper); }