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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-21 03:11:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-21 03:11:50 +0300
commit9d2ee8055a510dd41036c780c6209dc4d7d80c72 (patch)
treec8cd725c5fadd186023a4090f7d08b71f6b7f53c /io_curve_svg
parentb01f11eed8fae9bd6257408fafc8569a6a0bc6aa (diff)
fix for [#26148] Anomaly in bvh import
zero length bones had their tail offset in the wrong direction.
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/import_svg.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 4443565a..f5761819 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -111,7 +111,6 @@ def SVGRectFromNode(node, context):
if node.getAttribute('height'):
h = SVGParseCoord(node.getAttribute('height'), h)
-
return (w, h)