Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #719 from mvdw/my2branch
Browse files Browse the repository at this point in the history
Exported SVG is multi-layer, not multi-page
  • Loading branch information
prikhi committed Jul 18, 2015
2 parents 417fa19 + 56bcf66 commit 3371aac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/content/pencil/exporter/svgExporter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function SVGExporter() {
this.name = "Multi-page SVG file";
this.name = "Multi-layer SVG file";
this.id = "SVGExporter";
this.xsltProcessor = new XSLTProcessor();
this.xsltDOM = null;
Expand Down Expand Up @@ -31,7 +31,7 @@ SVGExporter.prototype.export = function (doc, options, destFile, xmlFile, callba
callback();
};
SVGExporter.prototype.getWarnings = function () {
return "Document will be exported as a multi-page SVG file that can used in Inkscape.";
return "Document will be exported as a multi-layer SVG file that can be used in Inkscape.";
};
SVGExporter.prototype.getOutputType = function () {
return BaseExporter.OUTPUT_TYPE_FILE;
Expand Down

0 comments on commit 3371aac

Please sign in to comment.