--- File/SvgExport/SvgExport.js~ 2011-08-19 15:58:00.000000000 +0200 +++ File/SvgExport/SvgExport.js 2011-08-29 13:44:13.102345033 +0200 @@ -24,7 +24,7 @@ return; } - var properties = new Array(); + var properties = {}; properties["unit"] = EAction.getIntValue("UnitSettings/Unit", RS.None); properties["scale"] = EAction.getStringValue("SvgExport/Scale", "1:1"); properties["autoOpen"] = EAction.getBoolValue("SvgExport/AutoOpen", false); --- ImportExport/SvgExporter/SvgExporter.js~ 2011-08-19 15:58:00.000000000 +0200 +++ ImportExport/SvgExporter/SvgExporter.js 2011-08-29 13:45:59.042344566 +0200 @@ -21,7 +21,7 @@ this.scaleStr = "1:1"; this.scale = 1.0; this.adjustPage = true; - this.exportPoints = true; + this.exportPoints = false; this.pointsAsCircles = true; this.circleRadius = 0.01; this.crossSize = 1.0; @@ -675,6 +675,7 @@ } if (properties["exportPoints"]) { + this.setExportPoints(true); if (properties["circlesOrCrosses"] == "PointsAsCircles") { this.setPointsAsCircles(true); this.setCircleRadius(properties["circleRadius"]);