Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/import_svg.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index c8c492ff..91cff022 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -1536,6 +1536,9 @@ class SVGGeometryELLIPSE(SVGGeometry):
ob = SVGCreateCurve()
cu = ob.data
+ if self._node.getAttribute('id'):
+ cu.name = self._node.getAttribute('id')
+
if self._styles['useFill']:
cu.dimensions = '2D'
cu.materials.append(self._styles['fill'])